Microsoft
Software
Hardware
Network
Question : Formula Help
SUMPRODUCT((Desc="Authoriz
ed")*($L15
:$AT15))
Provides sum of columns that are headed with "Authorized"
Desc = Range name related to Row 1: L1:AT1
This formula works fine except in instances where there is text entered in the range L15:AT15. How do I exclude the cells that contain text so that this doesn't return an ERROR?
Answer : Formula Help
Instead of this:
=SUMPRODUCT((Desc="Authori
zed")*($L1
5:$AT15))
use this:
=SUM(IF(ISTEXT($L15:$AT15)
,0,(Desc="
Authorized
")*($L15:$
AT15)))
Enter as an array formula by pressing CTRL+SHIFT+ENTER.
jppinto
Random Solutions
What am i doin wrong
Can't print to Dymo Labelwriter 400 turbo after adding labelwriter 450 turbo drivers on windows 2003 terminal server
Most Efficient Way Of Appending to a Byte[]
How deploy a website shortcut to 200 users desktop
web design vs dev
MRSS FEED
Using VLookup for Data Validation
Ubuntu - Vista
Inserting data into a varbinary(max) field
How do I access a combo box in a WPF datagridtemplatecolumn using codebehind c#