We're giving away 30 tickets for FREE! Share your story, your vision, or your hustle and tell us why YOU deserve a ticket.
Apply nowWin a FREE 3 Day Ticket to FabCon Vienna. Apply now
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.
User | Count |
---|---|
62 | |
59 | |
46 | |
35 | |
31 |
User | Count |
---|---|
87 | |
71 | |
57 | |
51 | |
45 |