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.
Dear Experts,
I have a table "FCC Resource Plan" where the details of the resources along with their date of booking is available by various days
what i need is to 2 coloumn(Project start date and Project End date) from Booking Date coloumn
for project start date, i tried using the Dax below, but this is not correct, as the lines are repeating in all rows and values are same across all rows
Ideally it should iterate through each resources and show the min of that resources booking date only
how to write this calculated coloumn correctly or is it has to be done through measure?
Solved! Go to Solution.
@vjnvinod , Try a new column like, assume you have the project id
Project Start date = MINX(filter( 'FCC Resource Plan',[project id] = earlier([project id]) ) , 'FCC Resource Plan'[Booking Date].[Date])
is there anything you can help me on this?
I tweaked your formula, but i have exclude the no booking dates as well, how do we modify this DAX?
@vjnvinod , Try a new column like, assume you have the project id
Project Start date = MINX(filter( 'FCC Resource Plan',[project id] = earlier([project id]) ) , 'FCC Resource Plan'[Booking Date].[Date])
works like a charm
how about end date, something similar?
But i have to exclude "No Booking" from coloumn booking type for End date
that means Project end date should be by excluding the max dates of "no booking"
is there anything you can help me on this?
I tweaked your formula, but i have exclude the no booking dates as well, how do we modify this DAX?
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.