Good afternoon,
I currently do calculations in a long winded formula that pulls the information from a table and shows the information as "100% (2)"
But if I do this in a pivot table I can complete the score 'Pass/'Completed' to gibe the % but can I add the (2) in the same output field so the table isn't to large as it shows as 5 individual columns where as if I need to do them all separately that would end up as 10 columns.
thanks
Gavin
I currently do calculations in a long winded formula that pulls the information from a table and shows the information as "100% (2)"
But if I do this in a pivot table I can complete the score 'Pass/'Completed' to gibe the % but can I add the (2) in the same output field so the table isn't to large as it shows as 5 individual columns where as if I need to do them all separately that would end up as 10 columns.
Code:
=CONCATENATE(TEXT(SUM(SUMIFS('Sheet1'!$M:$M,'QA Data'!$B:$B,Main!$F$2,'QA Data'!$D:$D,Main!$F$1,'QA Data'!$F:$F,C165)/SUMIFS('Sheet1'!$L:$L,'Sheet1'!$B:$B,Main!$F$2,'QA Data'!$D:$D,Main!$F$1,'Sheet1'!$F:$F,C165)),"0%")," (",SUMIFS('Sheet1'!$L:$L,'QA Data'!$B:$B,Main!$F$2,'QA Data'!$D:$D,Main!$F$1,'Sheet1'!$F:$F,C165),")"))
thanks
Gavin