Forum Discussion
Create dynamic table based on text filter values
- 4 years ago
Hi phuocnguyen ,
You can try below steps:-
1. Create a seperate table with below code:-
Table = DISTINCT(Sheet1[OrigSalesId])2. Use newly created table column in the search text visual.
3. Now Create a measure with below code and use it as filter on your table visual:-
_filter = IF ( MAX ( Sheet1[OrigSalesId] ) = SELECTEDVALUE ( 'Table'[OrigSalesId] ), 1, 0 )Below is your file for your reference:-
Thanks,
Samarth
Hi phuocnguyen ,
You can try below steps:-
1. Create a seperate table with below code:-
Table = DISTINCT(Sheet1[OrigSalesId])
2. Use newly created table column in the search text visual.
3. Now Create a measure with below code and use it as filter on your table visual:-
_filter =
IF (
MAX ( Sheet1[OrigSalesId] ) = SELECTEDVALUE ( 'Table'[OrigSalesId] ),
1,
0
)
Below is your file for your reference:-
Thanks,
Samarth
- phuocnguyen4 years agoFrequent Visitor
Hi Samarth_18 ,
Thank you for your instruction, but the file has been deleted, could you check it again?
- Samarth_184 years agoCommunity Champion
phuocnguyen ,Please check your Private message. I have sent you updated url.
- phuocnguyen4 years agoFrequent Visitor
Thank you, this work well for me.