Hello, is it possible to get a formula in suiteana...
# general
p
Hello, is it possible to get a formula in suiteanalytics to get the first date of the current month?
a
This will bring the first day of next month LAST_DAY(CURRENT_DATE)+1
LAST_DAY(ADD_MONTHS(CURRENT_DATE,-1))+1
that should bring the first date of this month
p
thanks
it worked!
👍 1
m
Or
TRUNC(CURRENT_DATE, 'MM')
✔️ 1