Sign in to join the conversation:
Since SmartSheet doesn't seem to have a roundup function, can anyone help me to calculate the annual quarter from a coresponding date?
in excel i would use something like:
=roundup(month(cell where my date is)/3,0)
=(INT((MONTH(DATEREF) + 2) / 3))
Craig
Craig,
thanks for getting back to me, I really appreciate your repsonse. Your formula is working great!
Much appreciated!
Hi Craig,
Just wondering if you have any suggestion to how I can return a value such as Q3-2018; in excel I would use a formula such as this:
="Q"&ROUNDUP(MONTH(A1)/3,0)&"-"&YEAR(A1)
Thanks,Jessica
="Q" + (INT((MONTH(DATEREF) + 2) / 3)) + "-" + YEAR(DATEREF)
should do it.
This throws an error if DATEREF is blank, so
=IFERROR("Q" + (INT((MONTH(DATEREF) + 2) / 3)) + "-" + YEAR(DATEREF),"")
will return blank in that case.
Thanks for this!
Do you know if it would be possible to return a value such as "JFM-18"?
JFM to stand for Jan Feb March, AMJ=Apr May June, etc, rather than saying Q1, Q2.
Thanks,
Jessica
You'll need to change this portion
(INT((MONTH([Column2]1) + 2) / 3))
of the formula either a NestedIF or a LOOKUP functionality.
If this were a requirement for a customer, I would put the whole thing in a X-Sheet reference and the formula on another sheet.
Hey Craig!
I've tried a few of your many solutions for quarter formulas, but none of them seem to work on my smartsheets. Could there be something else I can do?
Ultimately, I am looking for a formula that will translate a date from a different column to a quarter number.
Thanks!
Hello, I'm working through the writing formulas optional activity and in the 'Nested IF function - Progress Column' task it directs you to put in the following formula '=IF([% Complete]@row = 0, “Empty”)'. However, when I put this formula into the spreadsheet, '04a_Marketing Request Tracker - Formulas', I get an…
I have an automation that has a condition where I am looking at the column "LEA Interco Supporting Site(s)" and trying to find columns that have the value "Fort Loramie" in them. This works well when "Fort Loramie" is the first item listed in the cell, but it doesn't work when "Fort Loramie" is the second or third value in…
Have any of you created a Smartsheet that would show the savings for a project by the month? In other words, if I saved $1200 annually and the project ended in say March, then the savings would go $120 per month, Mar 2025-Feb 2026. I have done it on Excel sheets manually, but I think there should be a way to do it with…