Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
72 | |
38 | |
31 | |
26 |