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! Request now

Reply
Lily36876
Helper II
Helper II

SELECTEDVALUE Using Question

Hi Experts

 

I have encountered a problem. Each of my brands has a Review Threshold.

If the performance achievement rate of a brand exceeds this Review Threshold, a review needs to be shown.

However, with the current formula I'm using and after adding fields into a matrix, I'm facing this issue.

Each brand is displaying Review Thresholds that do not belong to them.

Lily36876_0-1713435362089.png


My dax using below

Threshold = IF(SELECTEDVALUE('Brand Review Threshold'[Review Threshold])=BLANK(),"",IF(OR('Date'[SalesTargetAchv%]<1-
SELECTEDVALUE('Brand Review Threshold'[Review Threshold]),SELECTEDVALUE('Brand Review Threshold'[Review Threshold])>1+
SELECTEDVALUE('Brand Review Threshold'[Review Threshold])),"Review",""))

 

Is it not feasible to useSELECTEDVALUE?

2 REPLIES 2
amitchandak
Super User
Super User

@Lily36876 , if Review Threshold is a measure then selectedvalue or max is not needed. Try with max if this is a column

 

IF(Max('Brand Review Threshold'[Review Threshold])=BLANK(),"",IF(OR('Date'[SalesTargetAchv%]<1-
Max('Brand Review Threshold'[Review Threshold]),Max('Brand Review Threshold'[Review Threshold])>1+
Max('Brand Review Threshold'[Review Threshold])),"Review",""))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hello!!

Thanks for reply,

but I think it should be a measure?

because I can't create this column in connect table.

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