Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. 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!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 44 | |
| 38 | |
| 34 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 66 | |
| 65 | |
| 30 | |
| 26 | |
| 25 |