prasadavasare

New Member
Joined
Apr 28, 2011
Messages
45
Need to add a column in above pivot which shows [Dezired result] the count of [Credit Family Names] whose [Sum of Sum of Primary used USD] is equal to Zero or Blank: Note: I am using Excel 2013 power pivot. No Power Query.

<st1:stockticker>SCG</st1:stockticker>N
PCD(All)
<st1:stockticker>CPC</st1:stockticker>(All)
CLT(All)
Bucket(Multiple Items)
<st1:stockticker>COB</st1:stockticker>8/31/2017

<colgroup><col><col></colgroup><tbody>
</tbody>

PCECredit Family NameSum of Sum of Primary Used USDCount of Credit Family NameDesired Result
FostxxxxxxxxxRudixxxxxxxxxxx011
Fostxxxxxxxxx Total011
GonzxxxxxxxxxAutixxxxxxxxxxxxxxx6,922,5421
TURNxxxxxxxxxxxxxxxx36,845,5055
Gonzxxxxxxxxx Total43,768,0476
IndrxxxxxxxxxWATCxxxxxxxxxxxxxxxx2,000,0001
Indrxxxxxxxxx Total2,000,0001
KeglxxxxxxxxxPROMxxxxxxxxxxxxxxxx11
ROMOxxxxxxxxxxxxxxxx3,577,2784
DEL xxxxxxxxxxxxxxxx3,646,3181
LUCExxxxxxxxxxxxxxxx5,938,0301
INVExxxxxxxxxxxxxxxx25,000,0003
PABExxxxxxxxxxxxxxxx38,294,3716
Keglxxxxxxxxx Total76,455,997161
MartxxxxxxxxxVINSxxxxxxxxxxxxxxxx011
PORTxxxxxxxxxxxxxxxx011
STANxxxxxxxxxxxxxxxx250,0001
STANxxxxxxxxxxxxxxxx3,090,5341
ALLExxxxxxxxxxxxxxxx11,082,1731
HORIxxxxxxxxxxxxxxxx68,500,0003
Martxxxxxxxxx Total82,922,70782
McNaxxxxxxxxxABKCxxxxxxxxxxxxxxxx011
McNaxxxxxxxxx Total011
MendxxxxxxxxxBRC xxxxxxxxxxxxxxxx102,075,0006
Mendxxxxxxxxx Total102,075,0006
PortxxxxxxxxxRICHxxxxxxxxxxxxxxxx021
PALLxxxxxxxxxxxxxxxx21,537,7791
Portxxxxxxxxx Total21,537,77931
PowoxxxxxxxxxAMERxxxxxxxxxxxxxxxx81
CENTxxxxxxxxxxxxxxxx21
STANxxxxxxxxxxxxxxxx011
Powoxxxxxxxxx Total0113
SiegxxxxxxxxxSTANxxxxxxxxxxxxxxxx352,2361
Siegxxxxxxxxx Total352,2361
SwicxxxxxxxxxALL xxxxxxxxxxxxxxxx1,083,4632
Swicxxxxxxxxx Total1,083,4632
Grand Total330,195,229569

<tbody>
</tbody>
 
Last edited:

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
you can try this:

Code:
measure := SUMX (
    VALUES ( Table[Credit Family Name] ),
    IF ( [Sum of Sum of Primary Used USD], 0, 1 )
)

But a bit of a shot in the dark.
 
Last edited:
Upvote 0
That works. Thank you so much.

One more help needed. Need to create Rag Rating Column at:
1 Credit Family Name level
2 PCE Level

1. Credit Family Name Level
if Max DPD >90 then R
if Max DPD >30 then A else G

2. PCE Level
if Max of Max DPD >90 then R
if Max of Max DPD >30 the A else G
 
Upvote 0

Forum statistics

Threads
1,215,201
Messages
6,123,621
Members
449,109
Latest member
Sebas8956

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