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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello
I am struggling with this dax and getting the above error. I cannot work out what is wrong with my syntax. Any help would be gratefully received:
Solved! Go to Solution.
@SalCambs , Try using
CIC at End of Month =
CALCULATE(
COUNTROWS('Annex A List 8 v2'),
'Annex A List 8 v2'[Date started to be Looked After] <= EOMONTH(MAX(DateTable[Date]), 0),
OR(
'Annex A List 8 v2'[Date Ceased to be Looked After] >= EOMONTH(MAX(DateTable[Date]), 0),
ISBLANK('Annex A List 8 v2'[Date Ceased to be Looked After])
)
)
Proud to be a Super User! |
|
Try:
CIC at End of Month =
CALCULATE (
COUNTROWS ( 'Annex A List 8 V2' ),
'Annex A List 8 V2'[Date Started to be Looked After] <= EOMONTH ( MAX ( DateTable[Date] ), 0 )
&& (
'Annex A List 8 V2'[Date Ceased to be Looked After] > EOMONTH ( MAX ( DateTable[Date] ), 0 )
|| ISBLANK ( 'Annex A List 8 V2'[Date Ceased to be Looked After] )
)
)
If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
Try:
CIC at End of Month =
CALCULATE (
COUNTROWS ( 'Annex A List 8 V2' ),
'Annex A List 8 V2'[Date Started to be Looked After] <= EOMONTH ( MAX ( DateTable[Date] ), 0 )
&& (
'Annex A List 8 V2'[Date Ceased to be Looked After] > EOMONTH ( MAX ( DateTable[Date] ), 0 )
|| ISBLANK ( 'Annex A List 8 V2'[Date Ceased to be Looked After] )
)
)
If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
@SalCambs , Try using
CIC at End of Month =
CALCULATE(
COUNTROWS('Annex A List 8 v2'),
'Annex A List 8 v2'[Date started to be Looked After] <= EOMONTH(MAX(DateTable[Date]), 0),
OR(
'Annex A List 8 v2'[Date Ceased to be Looked After] >= EOMONTH(MAX(DateTable[Date]), 0),
ISBLANK('Annex A List 8 v2'[Date Ceased to be Looked After])
)
)
Proud to be a Super User! |
|
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
13 | |
11 | |
9 | |
8 | |
8 |