The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi PowerBI community!
I am been working on this problem for some time and can not seem to figure it out. Here is the scenario:
This is what I get so far, essentialy I want to move the target percent from the blank row to the GBP row
I have tried SELECTEDVALUE, using the AlternateResult, but will not show the 'default value':
Thanks four your time, and have included a sample file if helpful. Thank you!!!
Solved! Go to Solution.
I'd try defining the default value as a variable. It's easier to debug that way.
Target (SelectedValue) =
VAR Default =
LOOKUPVALUE ( Target[Target], Target[Currency], "Default" )
RETURN
IF ( NOT ISEMPTY ( Amount ), SELECTEDVALUE ( Target[Target], Default ) )
I'd try defining the default value as a variable. It's easier to debug that way.
Target (SelectedValue) =
VAR Default =
LOOKUPVALUE ( Target[Target], Target[Currency], "Default" )
RETURN
IF ( NOT ISEMPTY ( Amount ), SELECTEDVALUE ( Target[Target], Default ) )
@AlexisOlson Awesome! Thanks so much for taking a look, and figuring it out. much appreciated.