Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
zzinoun
Resolver I
Resolver I

Alternate two colors for rows (filtered table)

Hello, 

 

 

I have a table visual with an index column that allows to identify an object.

I would like to add two colors that alternates depending on index value. 

 

Here is an example of desired behaviour :

id   

10  : Black

10  : Black

31 :  White

92 : Black

104 : White 

104 : White

104 : White

 

Please note this should be a measure because it has to work in filtered context as well.

 

Thanks in advance,

1 ACCEPTED SOLUTION
v-cgao-msft
Community Support
Community Support

Hi @zzinoun ,

Please try like.

Measure = 
VAR _id = SELECTEDVALUE ( 'Table'[id] ) 
VAR _count = COUNTROWS(FILTER(ALLSELECTED('Table'[id]),'Table'[id]<=_id))
VAR _color = IF(ISODD(_count),"#787C80","#FFFFFF")
RETURN 
_color

vcgaomsft_0-1677640082878.png

vcgaomsft_1-1677640119830.png

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

View solution in original post

2 REPLIES 2
zzinoun
Resolver I
Resolver I

Thanks 😄 

v-cgao-msft
Community Support
Community Support

Hi @zzinoun ,

Please try like.

Measure = 
VAR _id = SELECTEDVALUE ( 'Table'[id] ) 
VAR _count = COUNTROWS(FILTER(ALLSELECTED('Table'[id]),'Table'[id]<=_id))
VAR _color = IF(ISODD(_count),"#787C80","#FFFFFF")
RETURN 
_color

vcgaomsft_0-1677640082878.png

vcgaomsft_1-1677640119830.png

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.