Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
On the 8th business day of a month onwards I would like to show the data till last month (Dec)and before the 8th business day I would like to show the data for the month before the last month(Nov).
Solved! Go to Solution.
Hi, @Anonymous ;
You could add another measure as rank Business day measure. then modify your meaure.
1. rank measure.
rank = RANKX(FILTER(ALL(Table1),EOMONTH([Date],0)=EOMONTH(MAX([Date]),0)&&WEEKDAY([Date],2)<6),CALCULATE(MIN([Date])),,ASC)
2.modify your measure.
YTD =
VAR EightBusinessday =
MINX(FILTER(ALL(Table1),EOMONTH([Date],0)=EOMONTH(MAX('Table1'[Date]),0)&&[rank]=8),[Date])
VAR EndDate =
IF (
TODAY () < EightBusinessday,
EOMONTH ( TODAY (), -2 ),
EOMONTH ( TODAY (), -1 )
)
RETURN
CALCULATE (
FactLaborBudgetHourBV[M_BudgetLaborHour],
KEEPFILTERS ( DimDate[Date] <= EndDate )
)
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous ;
You could add another measure as rank Business day measure. then modify your meaure.
1. rank measure.
rank = RANKX(FILTER(ALL(Table1),EOMONTH([Date],0)=EOMONTH(MAX([Date]),0)&&WEEKDAY([Date],2)<6),CALCULATE(MIN([Date])),,ASC)
2.modify your measure.
YTD =
VAR EightBusinessday =
MINX(FILTER(ALL(Table1),EOMONTH([Date],0)=EOMONTH(MAX('Table1'[Date]),0)&&[rank]=8),[Date])
VAR EndDate =
IF (
TODAY () < EightBusinessday,
EOMONTH ( TODAY (), -2 ),
EOMONTH ( TODAY (), -1 )
)
RETURN
CALCULATE (
FactLaborBudgetHourBV[M_BudgetLaborHour],
KEEPFILTERS ( DimDate[Date] <= EndDate )
)
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
You can create a measure with this kind of logic:
var _date = calculate(max(calendar[business day]),all(calendar),calendar[date]=today()) return
IF(_date<8,[measure with data until Novermeber],[measure with data until december])
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
Proud to be a Super User!
The below was the query written, Kindly let me know ho we can change as per the logic
YTD =
VAR EightBusinessday =
CALCULATE (
MIN ( DimDate[Date] ),
DimDate[CurrentMonthBusinessDay] = 15
)
VAR EndDate =
IF (
TODAY () < EightBusinessday,
EOMONTH( TODAY (), -2 ),
EOMONTH ( TODAY (), -1 )
)
RETURN
CALCULATE (
FactLaborBudgetHourBV[M_BudgetLaborHour],
KEEPFILTERS( DimDate[Date] <= EndDate )
)
@Anonymous , Assume you have two measure like
MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))
last MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-1,MONTH)))
Then you can have a measure
if(day(Today()) < 8 , [MTD Sales],[last MTD Sales])
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
8 | |
8 | |
8 | |
6 |
User | Count |
---|---|
14 | |
12 | |
11 | |
10 | |
9 |