The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi community,
I'm not looking for a solution just understanding here. I was asked to provide qtr on qtr change in my report.
My source data does not have any data pre 2021, so things measured are for this year only, and going forward of course as time goes by.
I used new quick measure to get this using PowerBI feature:
IF(
ISFILTERED('DateDim'[Date]),
ERROR("Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy or primary date column."),
VAR __PREV_QUARTER =
CALCULATE(
[Weighted Survey Score],
DATEADD('DateDim'[Date].[Date], -1, QUARTER)
)
RETURN
DIVIDE([Weighted Survey Score] - __PREV_QUARTER, __PREV_QUARTER)
)
My visual then for QTR1 of this year gives me very high percentage, why is that?
I'd of thought that Q1 would not be as high as there is no previous qtr? There is no data for Q4 of 2020.
Solved! Go to Solution.
@kasiaw29 , that is strange.
But can check after removing .date and making sure date table is marked as a date table
like
DATEADD('DateDim'[Date], -1, QUARTER)
Can you share both current qtr and last qtr values in a table visual , along with change %
@kasiaw29 , that is strange.
But can check after removing .date and making sure date table is marked as a date table
like
DATEADD('DateDim'[Date], -1, QUARTER)
Can you share both current qtr and last qtr values in a table visual , along with change %
User | Count |
---|---|
78 | |
74 | |
43 | |
32 | |
28 |
User | Count |
---|---|
104 | |
95 | |
51 | |
50 | |
46 |