Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Additional help on a formula change:
This formula works IF(ISERROR('Piazzo Ware'! C30),"", 'Piazzo Ware'!C30) however I have an additional question; how do I make this look in C74 and if there isn't a value there go to C63, no value, go to C52, no valur look into C41, agin if there isn't a value then go to C30? Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
option1
nested IF statements =IF(x<0,x,IF(y<0,Y,IF(Z<0,Z,0) ) ) up to 7 i think, but its UGLY option 2 use a UDF remember these cascade down FUNCTION GetValue() as double WITH Worksheets("Piazzo Ware") dim x as double SELECT TRUE CASE .Range("C30")<0:x=.Range("C30") CASE .Range("C74")<0.Range("C74") CASE .Range("C52")<0.Range("C52") CASE .Range("C41")<0.Range("C41") ELSE 0 END SELECT GetValue = x end function and there's no real limit on CASE's "Ric" wrote: Additional help on a formula change: This formula works IF(ISERROR('Piazzo Ware'! C30),"", 'Piazzo Ware'!C30) however I have an additional question; how do I make this look in C74 and if there isn't a value there go to C63, no value, go to C52, no valur look into C41, agin if there isn't a value then go to C30? Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
automatically appending newly added data on worksheet to a master list worksheet | Links and Linking in Excel | |||
plot graph from multiple worksheet as embedded chart object on every worksheet | Charts and Charting in Excel | |||
Upload multiple text files into 1 excel worksheet + put the filename as the first column in the worksheet | Excel Worksheet Functions | |||
copy range on every worksheet (diff names) to a master worksheet (to be created) | Excel Programming | |||
Attaching a JET database to an Excel Worksheet OR storing large binary data in a worksheet | Excel Programming |