Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi!
I'm creating a report and I'm struggling to figure out how to show something in a graph.
Is it possible to show the following:
if Opportunity Ref has a value & Primary Quote is true, then show Estimated Value. Can this be done in a created column so I can use this in one visual?
Example of values below:
Opportunity Ref | Primary Quote | Estimated Value |
Ty Enfys 180521 | True | 60000 |
Morgan 230621 | True | 50000 |
Natural White | False | 10000 |
True | 5000 | |
False | 150000 | |
So for the top 2 rows which have an Opportunity Ref value, & Primary Quote = True, I'd like the Estimated Value to show in the visual.
Is this possible? All help appreciated.
Solved! Go to Solution.
Hi @andrewjones11 ,
Create a column with below code and use it on visual:-
Column =
IF (
AND (
'Table (7)'[Opportunity Ref] <> BLANK(),
'Table (7)'[Primary Quote]
),
'Table (7)'[Estimated Value],BLANK()
)
Output:-
Since other values are blank thats why it is not visible on visual so if you want to see those as well then enable Show item with no data
output:-
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @andrewjones11 ,
Create a column with below code and use it on visual:-
Column =
IF (
AND (
'Table (7)'[Opportunity Ref] <> BLANK(),
'Table (7)'[Primary Quote]
),
'Table (7)'[Estimated Value],BLANK()
)
Output:-
Since other values are blank thats why it is not visible on visual so if you want to see those as well then enable Show item with no data
output:-
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
8 | |
6 |