Forum Discussion
How to get dynamic data
- 2 years ago
oh yes the TOP N filter appears on visual filters
if you want only page level filter then add another custom column with below formula
MaxVersion = [version] = max('yourtable'[version])
this will return true if the version the latest
then add the new custom column to page level filters and filter for "true"
so if I am understanding correctly, your latest version is the 2 numbers from the left in the "versions" column ?
If this is correct, create a new custom column with the below formula
version = Value(Left(versions,2))this will give you a column that you can use in the page level filters, and you can then use TOPN filter type to choose top 1 value based on the version column
If my reply helped you to solve the problem, please accept it as the solution 🙂
After added the new column , i am not getting the TOP N filter option on above formula
- khaledHabib902 years agoResolver II
oh yes the TOP N filter appears on visual filters
if you want only page level filter then add another custom column with below formula
MaxVersion = [version] = max('yourtable'[version])
this will return true if the version the latest
then add the new custom column to page level filters and filter for "true"