Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi all'ya.
Data comes in as follows:
Project name, beginning date for billing, end date for billing, total sum and monthly revenue. Each of these is their own field. How do I show on the report that, e.g. billing that started March and ended in May shows values for all these three months?
Hi @Anonymous ,
I suggest you to create an unrelated calendar table and add a measure to filter the visual.
Data model:
Measure:
Filter =
VAR _RANGESTART =
MIN ( 'Calendar'[Date] )
VAR _RANGEEND =
MAX ( 'Calendar'[Date] )
RETURN
IF (
MAX ( 'Table'[beginning date for billing] ) >= _RANGESTART
&& MAX ( 'Table'[end date for billing] ) <= _RANGEEND,
1,
0
)
Add this measure into visual level filter and set it to show items when value =1.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Problem is, I want to show the months between - not just amount of months or the first and the last. But I want to list all the months between.
Yes, thank you so much. I'll look at this with more thought tomorrow.
User | Count |
---|---|
123 | |
69 | |
67 | |
58 | |
52 |
User | Count |
---|---|
183 | |
90 | |
67 | |
62 | |
53 |