Pivot Table

ericbabel

New Member
Joined
Jun 28, 2011
Messages
4
Hello, here is a couple formulas I was given that need some tweaking...
=GETPIVOTDATA("File#",$A$3,"Owner","Andrew Barnes","Equipment","FCL")
=GETPIVOTDATA("File#",$A$3,"Owner","Andrew Barnes","Equipment","LCL")

Problem is that sometimes there might not be an "LCL" and I need 0 to populate so that I can use it in my SUM formula in another spot on the table. The same is true for "FCL". I need 0 to populate when there is not an "FCL" listed in the table.

If more information is needed to help with the solution let me know and I can send the file I am working with. Thanks for any and all help.
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
XL2007+

Code:
=IFERROR(GETPIVOTDATA("File#",$A$3,"Owner","Andrew Barnes","Equipment","FCL"),0)

Prior to XL2007

Code:
=LOOKUP(9.99E+307,CHOOSE({1,2},0,GETPIVOTDATA("File#",$A$3,"Owner","Andrew Barnes","Equipment","FCL")))
 
Upvote 0
It looks liek this...

=IFERROR(GETPIVOTDATA("File#",$A$3,"Owner","Andrew Barnes","Equipment","FCL"),0)</PRE>helped. The formula is producing the desired resluts. I thank you very much four your time.
 
Upvote 0

Forum statistics

Threads
1,224,537
Messages
6,179,408
Members
452,912
Latest member
alicemil

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top