Forum Discussion
Searching value in one column in another column
- 7 years ago
Hi Anonymous ,
you may consider creating 2 columns :
1. Flag comparing Assigned ID & Approver ID.
Audit_Flag = 'Table'[Assigned ID] = 'Table'[Approver ID]
2. All Requisitions IDs which contain at least 1 TRUE flag from previous column will be marked as TRUE otherwise FALSE
Audit_Result = CALCULATE(CONTAINS('Table','Table'[Audit_Flag],TRUE()),ALLEXCEPT('Table', 'Table'[Requisition ID]))Final table will look like this:
Let us know if it helped!
Matej
Hi Anonymous ,
you may consider creating 2 columns :
1. Flag comparing Assigned ID & Approver ID.
Audit_Flag = 'Table'[Assigned ID] = 'Table'[Approver ID]
2. All Requisitions IDs which contain at least 1 TRUE flag from previous column will be marked as TRUE otherwise FALSE
Audit_Result = CALCULATE(CONTAINS('Table','Table'[Audit_Flag],TRUE()),ALLEXCEPT('Table', 'Table'[Requisition ID]))Final table will look like this:
Let us know if it helped!
Matej
- Anonymous7 years agoNot applicable
Thanks A lot.
That is what i was looking for.
- Anonymous7 years agoNot applicable
Thanks for the solution and the final table loooked great. I require one more help on this, I need a table view on dashboard with one line each of requisition ID with its audit column. Just like the below table:
Requisition ID Assigned ID Approver ID Audit 111 MJ2 MJ2 Found 222 HJ1 Not Found - MatejZukovic7 years ago
Resolver I
Hi Anonymous ,
you can create one more column :
Then create a table in your report bringing in Requisition ID, Assigned To, and the column created above. Unselect "Other Matches" in the table through a filter.
- ramdasanudas1 year agoFrequent Visitor
Thanks I was looking for similar thing to look Column1 value (A) in Column2 values (A,B) in same table.
Solution: CONTAINSSTRING worked