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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi, I'm creating a CALCULATETABLE in this way:
Solved! Go to Solution.
Hey @SebaSpotti ,
you can try the following:
CalcTable =
VAR _ExamMonth = [ExamMonth]
RETURN
CALCULATETABLE (
Table,
Table[Name] IN { "A", "C", "F" },
MONTH ( Table[Date] ) = _ExamMonth
)
I'm wondering, what exactly do you plan to do?
Do you want to use that in a measure or do you want to use that as a calculated table? Be aware if you are using a calculated table, that table is not dynamic. So after loading the file, the table won't change anymore.
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
Best regards
Denis
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic
Hey @SebaSpotti ,
you can try the following:
CalcTable =
VAR _ExamMonth = [ExamMonth]
RETURN
CALCULATETABLE (
Table,
Table[Name] IN { "A", "C", "F" },
MONTH ( Table[Date] ) = _ExamMonth
)
I'm wondering, what exactly do you plan to do?
Do you want to use that in a measure or do you want to use that as a calculated table? Be aware if you are using a calculated table, that table is not dynamic. So after loading the file, the table won't change anymore.
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
Best regards
Denis
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic
@selimovd thank you!
I was simply trying to calculate some measure, but probably i need them to be update so i'm changing the calculations.