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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

How to create indicators beside data in power BI

Hi Team,

How to achive bellow requiremnt in power BI.

capture20210115190717757.png

2 ACCEPTED SOLUTIONS

@Anonymous , with help from a date tbale have measure like this and create a diff measure and do formatting on that

 

This Day = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])))
Last Day = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])-1))
Last Day = CALCULATE(sum('order'[Qty]), previousday('Date'[Date]))

 

diff = [This day] -[Last day]

View solution in original post

v-yiruan-msft
Community Support
Community Support

Hi @Anonymous ,

I created a sample pbix file(see attachment) for you, please check whether that is what you want.

icon conditional formatting.JPG

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

6 REPLIES 6
v-yiruan-msft
Community Support
Community Support

Hi @Anonymous ,

I created a sample pbix file(see attachment) for you, please check whether that is what you want.

icon conditional formatting.JPG

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Vidya_kdd
Frequent Visitor

We can do conditional formating (icon) and define the rules and choose an icon for each rule.

 

Anonymous
Not applicable

Thanks for quick response.

Is it possible to create icon based on previous day values.

Example :

           Yesterday - 5000 -- stright arrow

           Today - 6000 -- cross above arror : indicate data got increase  

Note: Please once again refer my screenshot and please guide me.

you calculate the value for yesterday date (A)and calculate value for today's date(B). Find the difference (B-A). Aplly conditional formatting on the difference.

@Anonymous , with help from a date tbale have measure like this and create a diff measure and do formatting on that

 

This Day = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])))
Last Day = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])-1))
Last Day = CALCULATE(sum('order'[Qty]), previousday('Date'[Date]))

 

diff = [This day] -[Last day]

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.