Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi
i want to on show data where the Var data is higher than the target finish data.
however the problem is that the target finish is entered data and the var data is calculated using :
please help, even if it means doing my calculations again.
DEP TIME | SCHEDULED FINISH | ACTUAL FINISH | Var | TARGET FINISH |
06:50 | 05:50 | 05:45 | -65 | -60 |
07:50 | 06:50 | 06:50 | 0 | -60 |
07:50 | 07:40 | 07:41 | -9 | -10 |
09:55 | 09:30 | 09:10 | -25 | -45 |
Solved! Go to Solution.
hi @AI14
target finish can be calculated similarly, what do you mean by entered data?
if this is irrelevant, you can write a measure like this:
Measure =
IF([Var]>[Target Finish], 1)
and feed the measure to the filter pane of the table visual, and choose equal to 1.
hi @AI14
target finish can be calculated similarly, what do you mean by entered data?
if this is irrelevant, you can write a measure like this:
Measure =
IF([Var]>[Target Finish], 1)
and feed the measure to the filter pane of the table visual, and choose equal to 1.
Hi @FreemanZ
The Actual finish time and shceduled finish time was in date/time format and i used the above dax formula to make the var look like this: -45 format.
the target finish is data i entered in excel and imported so the format is already there
i tried the formula but got this message:
appologies, i tried it with a measure again and it worked.
i did: If([actual_finish]>sumx([table,target_finish]),1)
Thanks
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
8 | |
6 |