Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
can someone help me
Hi, add 'Text & image' chart to your report and write text you need with additional measures, something like this:
where measures checking if only one student is selected and showing corresponding values and looks like this:
if(GetSelectedCount(student)<>1, 'select 1 student', student)
if(GetSelectedCount(student)<>1, '-', attendance)
if(GetSelectedCount(student)<>1, '-', time)
i got it thank you so much.
if(GetSelectionCount([student name]<>1),'select a student name',[student name])
if(GetSelectedCount([student name]<>1), '-', attendance)
if(GetSelectedCount([student name])<>1), '-', time)
i have been stuck in this for 2-3 days
thank you so much.
Hi, add 'Text & image' chart to your report and write text you need with additional measures, something like this:
where measures checking if only one student is selected and showing corresponding values and looks like this:
if(GetSelectedCount(student)<>1, 'select 1 student', student)
if(GetSelectedCount(student)<>1, '-', attendance)
if(GetSelectedCount(student)<>1, '-', time)
it is showing error what should i do pls help me
GetSelecetedCount() is a function, you forgot to put brackets (as error indicate):
if(GetSelecetedCount([Student Name])<>1, 'select 1 student', [Student Name])
i got it thank you so much.
if(GetSelectionCount([student name]<>1),'select a student name',[student name])
if(GetSelectedCount([student name]<>1), '-', attendance)
if(GetSelectedCount([student name])<>1), '-', time)
i have been stuck in this for 2-3 days
thank you so much.