The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I want to achieve something like below. Only the column of the rows in the matrix should not be in BOLD(In the below image BI - Change), all the columns above should be BOLD irrespective of expand all or collapse all.
Lets see we are using Column1,Column2 and Column3 in the rows of the Matrix. I want Column3 to be not in BOLD when the user Expand All.
Please help, it is very urgent
Hi @rikabkothari ,
Maybe you can try below formula to create measure and use it to conditional formatting:
IsNotLastRow =
VAR LastRowValue = MAXX(ALL('Data'), 'Data'[ID])
RETURN
IF(MAX(Data[ID])< LastRowValue, "blod", "red")
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I dont see conditional formatting for rows. I need this changes in the rows only not the columns.
Hi @rikabkothari ,
Conditional formatting doesn't support acting on rows, plus in my tests it was applied to values instead of columns.
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@rikabkothari this is unfortunately not available in default matrix visual, try for json theme generator if that has an option to set up such settings.