Forum Discussion
Advanced filtering. Dependent dropdown using modelling
- 5 years ago
Hi anansrivastava ,
Why you don't combine the phase name column and project column in a filter table?
Filter = DISTINCT( UNION( SELECTCOLUMNS('Vani_Trends actual',"Project Name",'Vani_Trends actual'[Project Name],"Phase Name",'Vani_Trends actual'[Phase Name]), SELECTCOLUMNS('Vani_Trends2 - planned',"Project Name",'Vani_Trends2 - planned'[Project Name],"Phase Name",'Vani_Trends2 - planned'[Phase Name]) ))If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Hey anansrivastava ,
you have to filter then the values that you are using. So try the following for your table:
FILTER(VALUES('Vani_Trends actual'[Project Name]), 'Vani_Trends actual'[Project Name]='myFavouriteProject')
- anansrivastava5 years agoFrequent Visitor
Dear Selimovd,
Thank you for your reply.
However, I need to use data modelling as my slicer has 2 filter 2 tables. So something like -
calcProjectNameFilter = CALCULATETABLE( DISTINCT( UNION( VALUES('Vani_Trends actual'[Project Name]), VALUES('Vani_Trends2 - planned'[Project Name]) ), ALLSELECTED(calcProjectNameFilter) ))This didn't work. How can I integrate your solution with mine?
- v-deddai1-msft5 years agoCommunity Support
Hi anansrivastava ,
Why you don't combine the phase name column and project column in a filter table?
Filter = DISTINCT( UNION( SELECTCOLUMNS('Vani_Trends actual',"Project Name",'Vani_Trends actual'[Project Name],"Phase Name",'Vani_Trends actual'[Phase Name]), SELECTCOLUMNS('Vani_Trends2 - planned',"Project Name",'Vani_Trends2 - planned'[Project Name],"Phase Name",'Vani_Trends2 - planned'[Phase Name]) ))If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai