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.
I have a table Table1 with below columns
col1, col2, col3, startdate, targetdate
I want to create a measure something like below. Can you help me with correct syntax.
CALCUATE(
DISTINCTCOUNT(col1),
filter( startdate > Targetdate,
col2 = "abc",
col3 = "xyz")
Solved! Go to Solution.
Measure =
CALCULATE(
DISTINCTCOUNT(SampleData[col1]),
FILTER(SampleData, SampleData[startdate] > SampleData[targetdate] && SampleData[col2]="abc" && SampleData[col3] = "xyz")
)
Proud to be a Super User!
Measure =
CALCULATE(
DISTINCTCOUNT(SampleData[col1]),
FILTER(SampleData, SampleData[startdate] > SampleData[targetdate] && SampleData[col2]="abc" && SampleData[col3] = "xyz")
)
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.