Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Good Morning
I need some help please with identifying where there is missing data in a table.
Example of the data is
Learner | Applilcation | Course |
1 | 01/01/2022 | A1 |
1 | 01/01/2022 | B1 |
2 | 01/01/2022 | B1 |
3 | 01/01/2022 | A2 |
3 | 01/01/2022 | B2 |
All learners should have a course beginning with an A, i need to idenitfy from the data the ones that dont.
So in the example above it would identify learner 2.
The applications will differ from those in the table.
Thank you for your help.
Solved! Go to Solution.
Hi @Anonymous
Please try the following:
Base Table
Create a new Meausre
CourseWithA =
var var_numberOfCoursesWithA =
SUMX(
FactTable,
IF(LEFT(FactTable[Course],1) ="A",1,0)
)
RETURN
IF(var_numberOfCoursesWithA>0,1,0)
put learner and the measure into a visual
you can also use the measure as a filter
Best regards
Michael
-----------------------------------------------------
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your thumbs up!
@ me in replies or I'll lose your thread.
-----------------------------------------------------
Thank you
Hi @Anonymous
Please try the following:
Base Table
Create a new Meausre
CourseWithA =
var var_numberOfCoursesWithA =
SUMX(
FactTable,
IF(LEFT(FactTable[Course],1) ="A",1,0)
)
RETURN
IF(var_numberOfCoursesWithA>0,1,0)
put learner and the measure into a visual
you can also use the measure as a filter
Best regards
Michael
-----------------------------------------------------
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your thumbs up!
@ me in replies or I'll lose your thread.
-----------------------------------------------------
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
76 | |
61 | |
37 | |
33 |
User | Count |
---|---|
99 | |
56 | |
51 | |
42 | |
40 |