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 in the process of migrating a calculated field from Tableau to Power BI.
I have a PBI model that contains dim - fact - dim (all are one to many relationship) which is good.
Then I need to have a table like the picture below in the report view with just the addition of the new field 'Project Ongoing':
Expected Output:
My objective is to generate a new field or a measure called 'Project Ongoing' based on the expected output i have given above:
Tableau Project Ongoing calculated field to be migrated in Power BI DAX
[End Current] < [Next Month] OR [Project Removed]
Parameter:
Next Month (should be Dynamic) = Next month from today's month (01/08/2023) if based as of today.
@Anonymous hi, can u able to help me on this?
@cruzp , Try like
Project Ongoing =
VAR CurrentDate = TODAY()
VAR NextMonth = EOMONTH(CurrentDate, 1)
RETURN IF([End Current] < NextMonth || [Project Removed] = "✔", TRUE(), FALSE())
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.