Forum Discussion
Trying to automate dates using two different data sources
Thanks for providing this information! So I created a custom column but had to use a formula to provide the correct current month for the fiscal year period as the year begins in September for my industry. Here is the column I've created to provide the current fiscal period:
Anonymous I meant to create one column in the dataset. something like this, so you can use that column as a filter. I did based on months but you can modify the variables if you want dates or YYYYMM format.
=
VAR MinMonth= FORMAT(EOMONTH(TODAY(), 0), "MM")
VAR MaxMonth = FORMAT(EOMONTH(TODAY(), +3), "MM")
RETURN
IF(<Month in Table> >= MinMonth && <Month in Table> <= MaxMonth, 1, blank())
- Anonymous7 years agoNot applicable
I did that a couple of times and kept getting errors but finally got it to error out with the code below :)
Var Month =
VAR MinMonth = 'Current Fiscal Dates'[Current (FY Period)]
VAR MaxMonth = [FY Period (2 Months Ago)]
RETURN
IF('Current Fiscal Dates'[Current (FY Period)] >= MinMonth && 'Current Fiscal Dates'[FY Period (2 Months Ago)] <= MaxMonth, 1, blank())
So now, I just use this as a filter and it will only return those dates?
- deepu2997 years agoAdvocate V
Right, my expectation is the value of "Var Month" will be 1 only for the records in those 3 months in the whole dataset and it should be Blank for other rows. Do test it from your side and add the filter as needed. You can hide it from the filter pane so it's not visible to users.