Thread: [Solved] problem in the office
View Single Post
 
Old 03-09-2015, 12:10 AM
excelledsoftware excelledsoftware is offline Windows 7 64bit Office 2003
IT Specialist
 
Join Date: Jan 2012
Location: Utah
Posts: 455
excelledsoftware will become famous soon enough
Default

It is important to continue to learn as you transition into a new role. If you are going to be using Excel a lot you will want to review basic formulas and their functionality. As for your current issue you have actually answered it already. You need an IF statement that checks if something is a number and then if it is not a number do a different calculation.

Try the following formula and fill down.
Code:
=IF(ISNUMBER(A1)+0=TRUE,A1*C1,B1*C1)
The ISNUMBER formula returns true or false. If an item is a number it will return true. Now there is a difference to an actual number and numeric. You can remove the + 0 and see if those are the results you are looking for.

Let us know how it works.

Thanks
Reply With Quote