Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi all,
I am facing an issue where I need to remove rows in one model object based on a shared GUID listed in a column in another model object.
In this case, I have a list of successful leases that are linked to quotes for leases via this GUID. I need to remove the successful quotes from the quote model (or, at least, add a successful/unsuccessful column into that model) so that I can look at how our company is performing in certain markets. Otherwise I have a model that lumps all the successful/unsuccessful quotes together without disctinction and another model that is just the successful quotes, but no way to look at unsuccessful quotes by themselves.
In any advice?
Solved! Go to Solution.
Hi @Anonymous
You may create a measure like below and use it in visual level filter.
Measure = IF(MAX(Quote[QuoteID]) in VALUES(Lease[QuotelD]),1,BLANK())
Regards,
Hi @Anonymous
It seems you may try to use LOOKUPVALUE like this post to get the successful quotes.Then if the column is blank,it is unsuccessful.If you need further help,please share a simplified data sample and expected output.
Regards,
That didn't work, I am getting an error message reading "a table of multiple values was supplied where a single value was expected."
Here's an example
Lease Table
QuoteID
A
C
E
G
Quote Table
QuoteID
A
B
C
D
E
F
G
I need some way to either remove or mark ID's A, C, E, and G in the Quote Table.
Hi @Anonymous
You may create a measure like below and use it in visual level filter.
Measure = IF(MAX(Quote[QuoteID]) in VALUES(Lease[QuotelD]),1,BLANK())
Regards,
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 64 | |
| 32 | |
| 31 | |
| 27 |