Objective: Filter the table with only Rows in which C1_Name = C2_Name
Don't want to see rows that do not have any record associated in the factual, like NOT USED = NOT USED
Limitation: Cannot add calculated columns, only use DAX. This is because you only have access to the model in Direct Query mode.
Any idea on how to solve this in a good way?
Solved! Go to Solution.
@PedroReis you can add below red code next to calculation of your flag matching measure
Flag Matching Currencies = <your existing if condition> * DIVIDE( [Total Transaction Value], [Total Transaction Value] )
Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@PedroReis you can add below red code next to calculation of your flag matching measure
Flag Matching Currencies = <your existing if condition> * DIVIDE( [Total Transaction Value], [Total Transaction Value] )
Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@PedroReisdid you tried what I proposed? You can choose any aggregation function like MAX/MIN or SELECTEDVALUE
Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
I did, and multiple variations work the same way. Thanks for sharing Parry!
As @parry2k said, you could use various Aggregate functions. Measures require an aggregation, because they're calculated within a Filter context, and not in the context of a single table row.
In your case, each Visual row filters each of your columns to a single value. Therefore, MIN, MAX, LASTNONBLANK, SELECTEDVALUE all return the same thing.
Cheers!
Nathan
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
191 | |
68 | |
68 | |
57 | |
55 |
User | Count |
---|---|
182 | |
105 | |
90 | |
72 | |
70 |