Forum Discussion
Is it possible to create custom matrix?
Hi,
I was wondering if it is possible to create the below in powerbi? I am trying to create a dashboard that shows the performance of our data warehouse and it needs to be able to tell us whether each DB was successful or failed using icons. I am also trying to make sure it expands so we can see further info.
I started to do it in a matrix but struggled to condtional format by row to ensure each DB has its own conditions
Does anyone know of any way to do it or if there is a thread anywhere i can look at?
Hi AK1234,
this should work.
I inserted a Matrix with two new Measures:
Measures:
Status = VAR __char = IF(SUM(Forum[uoa_bl]) > 0.04,UNICHAR(9899),UNICHAR(11035)) RETURN __charStatus_Switch = VAR __char = SWITCH(VALUES(Forum[Line]),"A1",UNICHAR(11035),"A2",UNICHAR(9899),UNICHAR(9670)) RETURN __charHopefully this helps.
Cheers Jeffrey
2 Replies
- D4imi0n
Helper I
Hi AK1234,
this should work.
I inserted a Matrix with two new Measures:
Measures:
Status = VAR __char = IF(SUM(Forum[uoa_bl]) > 0.04,UNICHAR(9899),UNICHAR(11035)) RETURN __charStatus_Switch = VAR __char = SWITCH(VALUES(Forum[Line]),"A1",UNICHAR(11035),"A2",UNICHAR(9899),UNICHAR(9670)) RETURN __charHopefully this helps.
Cheers Jeffrey
- AK1234Frequent Visitor
Thank you! that worked