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.
Hey all,
I'm not even sure if it is possible, but I am trying to replicate a table in excel that conditionally formats the whole table using a grading colour scale.
Fig1
The figures contained within this table are weighted, so some calculations are required first.
The final measures used to get the weighted values are:
Solved! Go to Solution.
Hi @Auski
Measures need to be conditionally formatted one by one. However, you can use a disconnected table to kind of convert these measures into column - kind of! You can do so by using Enter Data. Assuming the table below is the disconnected table named MyMeasures, you can write a switch measure to return the value for each row
Measure |
BOP |
LNI |
LSI |
Combined Measures =
SWITCH (
SELECTEDVALUE ( MyMeasures[Measure] ),
"BOP", [BOP Measure],
"LNI", [LNI Measure],
"LSI", [LSI Measure]
)
Add Measure column to matrix column tile and the above measure to the value tile. Take note that disconnected tables dont have a relationship to your fact or dimension tables.
Hi @Auski
Did the solution danextian offered help you solve the problem, if it helps, you can consier to accept it as a solution so that more user can refer to, or if you have other problems , you can offer some information so that can probide more suggedtion for you.
Best Regards!
Yolo Zhu
Hi @Auski
Measures need to be conditionally formatted one by one. However, you can use a disconnected table to kind of convert these measures into column - kind of! You can do so by using Enter Data. Assuming the table below is the disconnected table named MyMeasures, you can write a switch measure to return the value for each row
Measure |
BOP |
LNI |
LSI |
Combined Measures =
SWITCH (
SELECTEDVALUE ( MyMeasures[Measure] ),
"BOP", [BOP Measure],
"LNI", [LNI Measure],
"LSI", [LSI Measure]
)
Add Measure column to matrix column tile and the above measure to the value tile. Take note that disconnected tables dont have a relationship to your fact or dimension tables.
User | Count |
---|---|
75 | |
75 | |
45 | |
31 | |
27 |
User | Count |
---|---|
99 | |
89 | |
52 | |
48 | |
46 |