Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
For this table below, I would like to see a new coloumn that only shows the "Active Learner" value where the Latest Status is 1.
Year | quarter | active learner | Status | Latest Value quarter |
2021 | Q1 | 26 | ||
2021 | Q2 | 26 | ||
2021 | Q3 | 26 | ||
2021 | Q4 | 26 | 1 | 26 |
2022 | Q1 | 13 | ||
2022 | Q2 | 13 | ||
2022 | Q3 | 13 | ||
2022 | Q4 | 13 | 1 | 13 |
I hope this message finds you well. I've noticed that this solution remain unresolved. If any of you have managed to find a resolution to the issue, I kindly request that you share your solution for the benefit of the entire community. Alternatively, if you're still facing challenges, please do let us know as well.
Your insights and updates will greatly assist others who might be encountering the same challenge.
Hi, it does not work because the status is numberic so when I try the filter for 'FILTER('Table',SELECTEDVALUE('Table'[Status])=1))' The status coloumn does not appear or not valid
if your status column is text data type then wrap 1 with double quotation "1" then try
The status coloumn is 'Numeric' but it does not appear as an option to select with the 'selectedvalue' function... not sure if its because its also a calculated meaure
@gracie494 , you can use a measure
learner = IF(SELECTEDVALUE(Table[Status]) = 1, SELECTEDVALUE(Table[active learner]))
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Check out my latest demo report in the data story gallery.
Stand with Ukraine!
Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/
Thank you!
Status is a measure?
learner = IF( [Status] = 1, SELECTEDVALUE(Table[active learner]))
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Check out my latest demo report in the data story gallery.
Stand with Ukraine!
Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/
Thank you!
Thanks the formular is right but it does not return the value in the Active Values Coloumn as its numeric... this only works if the 'Active Values Coloum' was a text field
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |