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 dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi everyone, need your help on this again!!!
I have a matrix that only displays values if the filter "Fase de Entrega" is selected.
Values columns:
"Anterior" = Previous values; font = d_EAP(BL3);
"Atual" = Actual values; font = d_EAP(BL2);
"Original" = Original value, won't be changed ever = d_EAP(BL1).
Note that they're all from the same table, but different columns.
Furthermore, I've got two measures for the icons that I Want to appear on the matrix columns, one for the Actual ["Atual" on green] value and another for the Previous ["Anterior" on red] value. Booth return an image based on the "Fase de Entrega" filter, and have the following code structure (where the letters (a, b, c) are changed by the image url on the real code):
Icon_Imp_Atual =
var filtro = SELECTEDVALUE('d_EAP_Códigos_Fases'[Fase])
return
IF(ISFILTERED('d_EAP_Códigos_Fases'[Fase]),
SWITCH(
TRUE(),
filtro = "Engª Conceitual / Básica","a",
filtro = "Aprovação da HA","b",
filtro = "Engª Detalhada","c",
filtro = "Planejamento (Aquisições e Contratações)","d",
filtro = "Execução Início","e",
filtro = "Execução Término","f"),"")
Then I use this DAX as the code that will change the icon of my cell elements' values.
The thing is that everytime that I have a value for the "Actual" or "Previous" columns, the icon with both coulors is displayed at both column. But I want that's only the Previous or Actual column contains the proper icon.
I hope you could understand my issue and help me with it!
Best Regards!
Solved! Go to Solution.
Hi everyone,
So, I end up finding the solution by myself (and a little help from Chat GPT lol).
I've decided to use only one data-set column on Value field, this column gathers all dates for every case (Original, Previous, and Actual).
Then I've decided that the "Previous" info wasn't necessery for our report. With that decision made, i've writen the following dax:
Hi @Anonymous ,
Struggling in getting how your setup is puicking up the actual vs previous.
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êsHi Miguel,
Thanks for trying to understand my issue.
I'm sending you the file via private message
Summing all up, this matrix has 3 columns (Original date, Previous date, and Actual date), and rather than returning these dates on the matrix, I want to display icons that are calculated by an switch dax code, triggered by the "Fase de Entrega" Filter. These icons have different colours, the original is a system default Star, the Previous should display red icons, as the Actual are green.
The main trouble is, for exemple,if I have these dates:
Original (01/01/23);
Previous (01/02/23);
Actual (01/03/23)
the matrix is displaying the icons like that:
01/01/23 | 01/01/23 | 01/01/23 | 01/02/23 | 01/02/23 | 01/02/23 | 01/03/23 | 01/03/23 | 01/03/23 |
Original | Previous | Actual | Original | Previous | Actual | Original | Previous | Actual |
⭐ | 🔴 | 💚 | ⭐ | 🔴 | 💚 | ⭐ | 🔴 | 💚 |
but the way it supposed to:
01/01/23 | 01/01/23 | 01/01/23 | 01/02/23 | 01/02/23 | 01/02/23 | 01/03/23 | 01/03/23 | 01/03/23 |
Original | Previous | Actual | Original | Previous | Actual | Original | Previous | Actual |
⭐ | 🔴 | 💚 |
Hi everyone,
So, I end up finding the solution by myself (and a little help from Chat GPT lol).
I've decided to use only one data-set column on Value field, this column gathers all dates for every case (Original, Previous, and Actual).
Then I've decided that the "Previous" info wasn't necessery for our report. With that decision made, i've writen the following dax:
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
61 | |
61 | |
55 | |
38 | |
27 |
User | Count |
---|---|
85 | |
60 | |
45 | |
41 | |
39 |