Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I've just come across the icon conditional formatting and calculation groups. When I was trying to combine them to reduce the time needed in doing the conditional formatting on each columns I thought I'd give it a go to apply it through calculation groups.
So first I tested out creating a measure for doing the CF to test doing it without calculation groups and it worked fine.
Solved! Go to Solution.
Ok I think I have discovered the root cause.
Because the underlying measure is originally of a type that is Integer, it is not adjusting to the type String that the Calculation Group is adjusting it to. And a field value source requires a measure to have a type of String.
So if I convert the measure to output a string initially and then do the switch on that through the Calculation Group it is now selectable.
So the problem is that the measure maintains it's original Data Type even if the Calculation Group is changing the output.
Ok I think I have discovered the root cause.
Because the underlying measure is originally of a type that is Integer, it is not adjusting to the type String that the Calculation Group is adjusting it to. And a field value source requires a measure to have a type of String.
So if I convert the measure to output a string initially and then do the switch on that through the Calculation Group it is now selectable.
So the problem is that the measure maintains it's original Data Type even if the Calculation Group is changing the output.
Hi @Ashes ,
Sorry for missreading your request, glad that you were abble to figure out what was going on.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @Ashes ,
When you mix calculation groups with condittional formatting everything works differently.
Check the videos below for explanation on what is happening and how to solve it.
https://www.youtube.com/watch?v=Y3d5CrVbbis&list=PLiYSIjh4cEx2s8-jXBhv5aCu5_6F9zQ3I&index=4
https://www.youtube.com/watch?v=YU5nddHQ-oo&list=PLiYSIjh4cEx2s8-jXBhv5aCu5_6F9zQ3I&index=8
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThanks for the vids. Unfortunately they didn't seem to address the issue I am experiencing, where I am unable to select a measure tweaked by the Calculated Group for a Field Value option for Icon Conditional Formatting, but is selectable as a Rule input to the Icon Conditional Formatting (just can't be used there because it doesn't contain values).
Effort to provide them appreciated though.
Hi @Ashes ,
Can you please share a mockup data or sample of your PBIX file. You can use a onedrive, google drive, we transfer or similar link to upload your files.
If the information is sensitive please share it trough private message.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThat's totally fine. I'm greatful for trying to assist me.
I'm pretty sure your attempt at helping me is what assisted me in figuring it out. Sounding it out with someone always helps 🙂
I'm sure I replied to this from this account. But I'll try again
Example Power BI File
So I had a full explanation of exactly the steps but I'll just summarize this time due to time. There are two Icon Conditional Format Source Measures created. One is modified by the Calculation Group which is KPI_CF_CG, it can't seem to be used a source for a Field Value while the other more specific measure doing the switch itself works just fine. Behaviour seems to be the same if it is a natural column or a display measure that is it is applied to.
Hi @Aklys ,
I believe that you need to have this formatting to be done automatticaly based on the measure that you have so you don't do any condittional formatting in the values, since the condittional formatting is done using a different process where you can select each of the values, having this on the calculation item does not avoid you to do it manually for each measure.
In this case and since your are doing just the normal icons I would do the KPI's calculation using the following way:
VAR _CF =
SWITCH (
TRUE (),
SELECTEDMEASURE () = 9000, UNICHAR(128994),-- "CircleHigh",
SELECTEDMEASURE () = 9001, UNICHAR ( 128993 ),-- "CircleMedium",
SELECTEDMEASURE () = 9002, UNICHAR ( 128308 ),-- "CircleLow",
UNICHAR ( 9899 )
)
RETURN
IF (
CONTAINSSTRING ( SELECTEDMEASURENAME (), "KPI*CF*CG" ),
SELECTEDMEASURE() & " " &_CF,
SELECTEDMEASURE ()
)
This will add the KPI on the measure it self.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThis unfortunately doesn't resolve the issue I'm mentioning. I get you can use unichar instead but that solution comes with it's own problems. Such as it creates inconsistency of application throughout reports that use conditional formatting already for other things. Also the UNICHAR images are too different to align with other uses of the icon conditional formatting.
I wasn't looking for an alternative solution to applying the images, I was more trying to understand why that conditional formatting method doesn't work, this way I will know the limitations better of Calculation Groups. So I was wondering if any one knows if it's an order of operations or something else causing the experience.
It seems I can't share files from where I am employed. So I'll create an example of the scenario with some mockup data under my personal account later on.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
109 | |
99 | |
96 | |
38 | |
36 |
User | Count |
---|---|
151 | |
125 | |
75 | |
74 | |
53 |