Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
i need a set analysis to find BOM of each month.
For Ex: Currently we are in May, I need to find the value for BOM for april 2023.
My date field is Month and measure name is Premium.
* BOM : Beginning of Every month.
Thanks in Advance
I have two date fields as i am joining two tables.
Date field is from master table
Filedate is from Joining table.
So how to add this date fields in the set.
Thanks in Advance
@Rocky6 try below
=sum({<FileDate = {"$(=monthstart(addmonths(max(CalendarDate),-1)))"}>}Value)
Hi There,
You can use the following code for getting BOM
Monthstart(Monthname(today())-1)
@Rocky6 considering you have Date field in your data use below expression
=sum({<Date = {"$(=monthstart(addmonths(max(Date),-1)))"}>}Value)
I have two date fields as i am joining two tables.
Date field is from master table
Filedate is from Joining table.
So how to add this date fields in the set.
Thanks in Advance
@Rocky6 try below
=sum({<FileDate = {"$(=monthstart(addmonths(max(CalendarDate),-1)))"}>}Value)
Thank you its working fine.