How do i Ask for the same argument from either one of two columns (IE Hour or Unit + exp+tax )
G G4 Feb 10, 2006 #1 How do i Ask for the same argument from either one of two columns (IE Hour or Unit + exp+tax )
A Anne Troy Feb 10, 2006 #2 Perhaps something like: =if(isblank(a1),b1+c1+d1,a1*e1) where a has hours, b is unit, c is exp, d is tax, and e is hourly rate. ************ Hope it helps! Anne Troy www.OfficeArticles.com Check out the NEWsgroup stats! Check out: www.ExcelUserConference.com
Perhaps something like: =if(isblank(a1),b1+c1+d1,a1*e1) where a has hours, b is unit, c is exp, d is tax, and e is hourly rate. ************ Hope it helps! Anne Troy www.OfficeArticles.com Check out the NEWsgroup stats! Check out: www.ExcelUserConference.com
C CLR Feb 10, 2006 #3 Please be a litte more detailed in describing your problem. "What" data do you have stored "where", and how do you wish to interrogate it? Thanks, Chuck, CABGx3
Please be a litte more detailed in describing your problem. "What" data do you have stored "where", and how do you wish to interrogate it? Thanks, Chuck, CABGx3
G G4 Feb 10, 2006 #4 The columns across the top are Hourly or unit plus tax plus expenses i want the total to be a result of either "Hourly" or "Unit"
The columns across the top are Hourly or unit plus tax plus expenses i want the total to be a result of either "Hourly" or "Unit"
C CLR Feb 10, 2006 #5 If A1=Hourly B1=Unit C1=Tax D1=Expenses Put this in E2 and copy down..... =IF(COUNT(A1:B1)=2,"ERROR",SUM(MAX(A1:B1),C1,D1) Vaya con Dios, Chuck, CABGx3
If A1=Hourly B1=Unit C1=Tax D1=Expenses Put this in E2 and copy down..... =IF(COUNT(A1:B1)=2,"ERROR",SUM(MAX(A1:B1),C1,D1) Vaya con Dios, Chuck, CABGx3