Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
humam85
New Member

Make a calculated column filter according the selected item in a slicer

Hello All !
i have a table with column "Project ID" contains Multiple Projects 
Another column is a "Remaining Early start" , i.e: every project has its own remeaining Early starts..

humam85_2-1673684871078.png

humam85_3-1673684880102.png

 


  I made a calculated column as follows 

humam85_0-1673684535891.png

the problem is : 
when i select item in a slicer contains "project ID" Values ,

humam85_1-1673684841520.png

 


the calculated column dosnt take the "min(remaining Early start ) " of that selected Project Id , but it takes the "min(remaining Early start) " of all projects .
 I need the calculated column to take the "min(remaining Early start ) " of that selected Project Id 

Thanks 

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

A calculated column formula result does not respond to a change in slicers.  If you create a Table visual and drag the Project column there, then this measure will work

Measure1 = min(Data[remaining Early start])

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
olgad
Super User
Super User

Hi human 85,
if it is a column, then try removing min() from the right part or create a measure  with adding min to the left part.

If(min('Table'[Project Start])<min('Table'[remaining Early start ]), "Delayed", "Ontime")

DID I ANSWER YOUR QUESTION? PLEASE MARK MY POST AS A SOLUTION! APPRECIATE YOUR KUDO/LIKE!
PROUD TO BE A SUPER USER!
Best Stories, Interesting Cases: PowerBI Storytime Newsletter
Linkedin Profile: Linkedin
YouTube Channel: PowerBI Storytime

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors