S
Steve
I have two fields [number] which is a contact number and
[type] which is Cell, Home... I have a report where I
want to list each person's home number and cell number
but I want everything on one line not grouped by
employee, thus I need two fields. Can I write a two
queries similar to these BRIO queries which will create
the two fields for my report?
homephoneCASE WHEN [type]= "home" THEN [number] ELSE ""
END)
cellphone: (CASE WHEN [type]= "cell" THEN [number]ELSE ""
END)
Thanks for the help!
[type] which is Cell, Home... I have a report where I
want to list each person's home number and cell number
but I want everything on one line not grouped by
employee, thus I need two fields. Can I write a two
queries similar to these BRIO queries which will create
the two fields for my report?
homephoneCASE WHEN [type]= "home" THEN [number] ELSE ""
END)
cellphone: (CASE WHEN [type]= "cell" THEN [number]ELSE ""
END)
Thanks for the help!