Hi all,
I have query which shows number of records for each day. How do i go about changing this so that it can give me the percentage of each.
This what i got so far...
SELECT Sum(IIf(Format([DateAdded],"dddd")="Monday",1,0)) AS Monday, Sum(IIf(Format([DateAdded],"dddd")="Tuesday",1,0)) AS...