Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hello,
Below code throws an error "USERELATIONSHIP function can only use the two columns references participating in relationship."
@Anonymous please Try this formula.
Cases Last 13 Month =
var MaxDate = CALCULATE(
MAX('Calendar'[Calendar_last_day_of_month])
,USERELATIONSHIP('Calendar'[Calendar_last_day_of_month]
,'Presenatation calendar'[Calendar_last_day_of_month])
)
var MaxDate_13MonthsAgo =
DATESINPERIOD(
'Presenatation calendar'[Calendar_last_day_of_month]
,MaxDate
, -13
,MONTH
)
var Results =
CALCULATE(
Actuals_by_Month[Actuals_Volume],
REMOVEFILTERS('Calendar') ,
KEEPFILTERS(MaxDate_13MonthsAgo)
)
RETURN
Results
** If this post helps, please consider accept as solution to help other members find it more quickly and Appreciate your Kudos.
@Anonymous Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Hi @Mahesh0016 ,
I wish I could share the pbix file after removing the sensitive data but the file is bit of large and removing things could take a lot of time.
. however my goal is to user should be able to see past 13 months of data based on the month selected. for example. if some one selects "01/31/2023" , user should see past 13 months iof data like below
Date Volume
01/31/2023 10
12/31/2022 30
.
.
.
01/31/2022 35
my input table is also in the same format as above but with one additional column added
Date site Volume
01/31/2023 1 5
01/31/2023 2 5
12/31/2022 1 10
12/31/2022 2 10
12/31/2022 3 10
.
.
.
01/31/2022 3 35
I am generating calendar like this
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |