Sign in to join the conversation:
Hello,
I'm trying to round a calculation to the lowest quarter (ending in 25,50,75 or 100). The Excel formula is
=FLOOR(132,25) equals 125
=FLOOR(168,25) equals 150
Smartsheet doesn't recognize the FLOOR function; any help is appreciated
Hi Lee,
This might help: https://community.smartsheet.com/discussion/alternative-floor-and-ceiling-functions
Hope that helps!
Have a fantastic day!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
Thanks Andre, i'll try and post the results
Happy to help!
Please do!
Andrée
For the FLOOR function, I generally use something along the lines of
=INT([Column Name]@row / ##) * ##
In your case ## would be replaced with 25.
.
CEILING is just a minor tweak to the above.
=(INT([Column Name]@row / ##) + 1) * ##
EDIT: Upon further testing, I realized there was an issue with my CEILING formula. Using your example in the original post, if you use that for 125, you'll get 150 instead of 125. The following corrects that to display 125 for 125 and 150 for 126, 127, etc.
=IF(INT([Column Name]@row/ ##) * ## = [Column Name]@row, [Column Name]@row, (INT([Column Name]@row / ##) + 1) * ##)
The screenshot below shows the results for the numbers 1 - 25 when using 5 for my floor and ceiling.
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…
Currently Triggering recurring workflows are only supported at the top of each hour. For instance 10:00, or 11:00, etc. Would like the ability to set 10:30 or 10:45. Perhaps the inteface can stay hourly so it doesnt get huge, but have the ability to manually edit the time directly to any custom time.
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…