I had a survey on the web and I saved the data in numbers in the database. I need to send an excel sheet to the Marketing dept. to analyze the results of the survey. My question is how do I convert say rows B2 to B4000 to text. For example if I have "1" in B2 I want to show "0 - 2 hours per month", if I have "2" I want to show "2 - 5 hours per month" and so on. I need a select case statement, but I don't see this in Excel. I was trying
=IF(B2=1,"0 - 2 hours per month",
IF(B2=2,"2 - 4 hours per month",
IF(B2=3,"5 - 10 hours per month",
IF(B2=4,"10 - 20 hours per month",
IF(B2=5,"Over 20 hours","No Input")))))
I don't know how to select columns B2 through B4000 on this.
Any help will be appreciated.
Thanks,
Nick
=IF(B2=1,"0 - 2 hours per month",
IF(B2=2,"2 - 4 hours per month",
IF(B2=3,"5 - 10 hours per month",
IF(B2=4,"10 - 20 hours per month",
IF(B2=5,"Over 20 hours","No Input")))))
I don't know how to select columns B2 through B4000 on this.
Any help will be appreciated.
Thanks,
Nick