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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I need a new table that brings over some columns from my initial table but filters it for a few months.
I got it to work with only 1 month like this:
Solved! Go to Solution.
Hi, @trevordunham
try below it might work
Current Year Table =
CALCULATETABLE(SUMMARIZE(
'Survey Data',
'Survey Data'[ResponseId],
'Survey Data'[Combined NPS],
'Survey Data'[CES Promoters],
'Survey Data'[CES Detractors],
'Survey Data'[CES Total],
'Survey Data'[EndDate]),
MONTH('Survey Data'[EndDate])=1 , MONTH('Survey Data'[EndDate])=2)
you can use or( || ) if you needed instead of , (and(&))
Hi, @trevordunham
try below it might work
Current Year Table =
CALCULATETABLE(SUMMARIZE(
'Survey Data',
'Survey Data'[ResponseId],
'Survey Data'[Combined NPS],
'Survey Data'[CES Promoters],
'Survey Data'[CES Detractors],
'Survey Data'[CES Total],
'Survey Data'[EndDate]),
MONTH('Survey Data'[EndDate])=1 , MONTH('Survey Data'[EndDate])=2)
you can use or( || ) if you needed instead of , (and(&))
Using || in place of OR worked, thank you.
User | Count |
---|---|
97 | |
78 | |
77 | |
49 | |
26 |