So I have a spreadsheet that takes (1/3, 2/,3 3/3) of a number depending on the month. for example: (January = 100 * .33) (February = 100 * .66) (March = 100 * 1). This cycle goes on for all 4 quarters of the year.
Solved! Go to Solution.
Hi @Hali3
You can use a if else block in a formula tool for this. Like below.
IF month = "January" Then 100 * .33
ELSEIF month = "February" Then 100 * .66
ELSE 100 * 1 ENDIF
Example is attached.
Hope this helps 🙂
If this post helps you please mark it as solution. And give a like if you dont mind 😀👍
If there a way to make a formula that includes Jnuary, April, July, October in one group. Feb etc. in another group?
Hi @Hali3
You can modify the formula like below
IF month in ("January","April","July","October") Then 100*.33
ELSEIF month in ("February") Then 100 * .66
ELSE 100 * 1 ENDIF
Months in the bracket is grouped together.
Output:
Hope this helps 🙂