Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
How is it possible to keep/evaulate the column 'Period'
In my Calculate function?
Hi,
The approach should be as follows:
Measure = if(month(min(calendar[date]))=1,[Actual],[Forecast])
Hope this helps.
I will try ths.
Hi @danielpaduck ,
Please try below dax formula:
Labor Hours Conditional (D) =
VAR minPeriod = MIN(CFGDates_Min_Max[Min Period (msr)])
VAR maxPeriod = MAX(CFGDates_Min_Max[Max Period (msr)])
RETURN
SUMX(
'LD Actual',
IF(
'LD Actual'[Period] = minPeriod,
'LD Actual'[Hours (Actual)],
IF(
'LD Actual'[Period] > minPeriod && 'LD Actual'[Period] <= maxPeriod,
CALCULATE(
SUM('LD Forecast'[Hours (Forecast)]),
'LD Forecast'[Period] = 'LD Actual'[Period]
),
BLANK()
)
)
)
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The DAX was complaining about the Period from the LD Actual table.
Could you please share the PBI file? Or create a new one with random data and share in here in order to have a better undestanding of the issue you're facing.
I am not sure how to attach the workbook. I only see links. Thanks!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 69 | |
| 60 | |
| 47 | |
| 20 | |
| 16 |