Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Greetings community,
I am working on getting a table to show the students that are incompleted on the bases of:
Count(DISTINCT {$< [Transcript Status Description] = {'Confirmed', 'In-Progress'}>} [Learner TID])
Currently that is in my measure column.
I am having a hard time getting this set modifier to count null values in the same column [Transcript Status Description].
I have attempted to create an if statement into a variable, but it doesn't seem to play nicely with the table as it does with my KPI
any suggestions??
May be try this:
Count(DISTINCT {$<[Learner TID] = {"=Match([Transcript Status Description], 'Confirmed', 'In-Progress')" or Len(Trim([Transcript Status Description])) = 0 "}>} [Learner TID])
Check this post Incorrect Null count in straight table
May be try this:
Count(DISTINCT {$<[Learner TID] = {"=Match([Transcript Status Description], 'Confirmed', 'In-Progress')" or Len(Trim([Transcript Status Description])) = 0 "}>} [Learner TID])
hmm that does give me the correct number I'm looking for but it does not display it in the straight table.
every row that's being counted should be displayed with the corresponding dimension(s)
Not sure I understand the corresponding dimension(s) part. Do you have a sample of screenshots you can use to show what exactly you mean?
Sorry but I am not sure what is wrong in the above image?
those are the results from the original post, so I need to have it give me a count of the 'Confirmed', 'In-Progress' (which is being displayed) and add the null count to it as well.
What are the numbers you expect to see? I mean the problem is I don't see [Transcript Status Description] and I don't know what your expected output is?
when placed into a KPI it gives me 304, but for some reason it gives me only 3 in the table