Hi everyone,
I'm currently using Visual Web Developer 2005 Express Edition, I have a chart that shows everything The Y axis displays the quantity and X axis shows the month.Well, the X axis I grouped it by month, but i want to set jan-march as q1 and so on.How can I format it, or do so it can display that format?
Thanks ahead of time,
Shuy
It would be easy if you could populate the data from the backend. You could group the data for three months and send the database back to the front end.
|||If you mean to change the output in some text field based on a column result, you can use IIF to make that change:
= IIF(Fields!Column.Value) = "Quarter1", "Jan-Mar",IIF(Fields!Column.Value) = "Quarter2", "Apr-Jun", IIF(Fields!Column.Value) = "Quarter3", "Jul-Sep", "Oct-Dec")
|||Thanks so much...just what i needed.
No comments:
Post a Comment