The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
We are are trying to see % change of each load time side by side and add it to this visual , aslo would like to have option to choose two load times to compate too .
example :want to comapte load tme of 5/18/2023 to 4/24/2023.
All data coming from one data set and no measures has been used.
@FreemanZ Thank you for reply, to explain more and be more clear :
I want to create the below table in Power BI Matrix, so I have week number and Qty , then want to use dax to create unit variance and % variance .
wk 20 | V U | V % | wk 21 | V U | V % | wk 22 | V U | V % | wk 23 | V U | V % | wk 24 | V U |
60 | 0 | 0% | 70 | 10 | 17% | 45 | -25 | -36% | 1 | -44 | -98% | 200 | 199 |
Not sure if fully get you.
Supposing you have a data table like:
try to
1) plot a slicer with a calculated table like:
slicer = VALUES(data[Date])
2) plot a table visual with class column and a measure like:
measure =
CALCULATE(
SUM(data[Value]),
data[Date]=MAX(slicer[Date])
)
-
CALCULATE(
SUM(data[Value]),
data[Date]=MIN(slicer[Date])
)
it worked like:
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
21 | |
20 | |
17 | |
15 | |
13 |
User | Count |
---|---|
42 | |
36 | |
25 | |
22 | |
18 |