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 have a column chart showing day-to-day changes for the last 7 days. The first column should be just a date on the x-axis without any data in the column, since we don't want to consider data from 8 days ago.
Solved! Go to Solution.
Hi @Anonymous ,
You need to create two measures.
measure1 = IF([date] >= today()-7,1,0)
Add this measure to visual filter to filter last 8 days' date.
measure2 = IF([date] >= today()-6,[calculated value],0)
Add this measure to value field to show last 7 days' data and show the data of day 8 as 0.
Best Regards,
Jay
Hi @Anonymous ,
You need to create two measures.
measure1 = IF([date] >= today()-7,1,0)
Add this measure to visual filter to filter last 8 days' date.
measure2 = IF([date] >= today()-6,[calculated value],0)
Add this measure to value field to show last 7 days' data and show the data of day 8 as 0.
Best Regards,
Jay
Thank you, I apparently don't have the ability to post a file attachment here. We have put the file in Teams. I hope this works. https://schoolcraftcollege-my.sharepoint.com/:u:/g/personal/bschreib_schoolcraft_edu/EdKbOaBu1mpMoxj...
you might need to provide more information. what is the measure are you showing for the day to day changes, you will probably need to do an measure = if(isnull(measure),0, measure) if you are wanting a 0 value for that day.
Proud to be a Super User!
This is the measure:
Ok then I am not quiet clear what you need. Please can you share the visual you are using right now and what it is you want differently?
Proud to be a Super User!