Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Greetings Community,
I have a set analysis to find the average days that students are on the waitlist for a course.
Course being my Dimension, and "Average Days on Waitlist" being my Measure.
My code for the Measure looks like this:
avg({$<transcript_status_code = {'W','w'}>}(date(today() - waitlist_date)))
I am having trouble building the code to show only the course(s) that have less then or equal 100 days.
Thoughts?
May be this:
Date(Avg({$<transcript_status_code = {'W','w'}, Course = {"=Today() - waitlist_date <= 100"}>}(Today() - waitlist_date)))
or
If(Today() - waitlist_date <= 100, Date(Avg({$<transcript_status_code = {'W','w'}>} (Today() - waitlist_date))))
Hi Mike
Will this work ...?
=if(Avg({$<transcript_status_code = {'W','w'}>}(date(today() - waitlist_date)))>100,0,
Avg({$<transcript_status_code = {'W','w'}>}(date(today() - waitlist_date)))
Nav Pienaar
May be this
avg({$<transcript_status_code = {'W','w'},Course={"=(date(today(),'MM/DD/YYYY')-waitlist_date)<=100"}>}(date(today() - waitlist_date)))
May be this:
Date(Avg({$<transcript_status_code = {'W','w'}, Course = {"=Today() - waitlist_date <= 100"}>}(Today() - waitlist_date)))
or
If(Today() - waitlist_date <= 100, Date(Avg({$<transcript_status_code = {'W','w'}>} (Today() - waitlist_date))))
Thank you!
I had to use the If statement to get it to work with a little finesse.
I appreciate your help all!
yes,
That is actually the exact code I implemented.
if(avg({$<transcript_status_code = {'W','w'}>}(date(today() - waitlist_date))) <= 100, avg({$<transcript_status_code = {'W','w'}>}(date(today() - waitlist_date))), null())