Forum Discussion
Ritesh_Air
Post Patron
3 years agoFilter Data based on IF condition - 2 tables
Hello, I have a file called SKU guidance which is maintained on SharePoint. I added those Guidance values on Item table by using LOOKUPVALUE. Guidance = LOOKUPVALUE('SKU Guidance'[Guid...
- 3 years ago
Ritesh_Air you can add this as a measure:
Guidance Measure = IF ( SELECTEDVALUE ( CustomerTable[Customer] ) = "NM", 0, MAX ( ItemTable[Guidance] ) )
parry2k
Super User
3 years agoRitesh_Air you can add this as a measure:
Guidance Measure =
IF ( SELECTEDVALUE ( CustomerTable[Customer] ) = "NM", 0, MAX ( ItemTable[Guidance] ) )