The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |