I have a calculated column in a crosstab report. Basically if the condition is true, I want it to return the column, if it's not true I want it to do nothing. At the moment I have this case statement.
case [Sales Year] when ?Parameter Year?
then 'YTD ' + ?Parameter Year?
end
This returns the column I want but also return an additional column showing the non true data. How can I prevent the unwanted column from showing.
case [Sales Year] when ?Parameter Year?
then 'YTD ' + ?Parameter Year?
end
This returns the column I want but also return an additional column showing the non true data. How can I prevent the unwanted column from showing.