How to show text into a pivot table

michelv

New Member
Joined
Mar 13, 2012
Messages
8
Hi there,

I'm a bit new to this and hopefully you can give me an answer. I'm trying to put survey results into a power pivot table and for the questions that relates to an answer it all goes perfect. But...if people have the choice to fill in text, how can I show this in a nice way in Power pivot?

One other question, can I limit the vertical slicer. For instance there are 20 question (1 til 20) and I only want to be able to choose from 10 till 14 to show in the slice, is this possible (without excluding it in the database file)

Thanks in advance
 
I am trying to get your suggestion to work, but need more detail. I am a bit rusty with my excel. Where do you insert the formula below? I tried inserting a calculated field, this was the only place I could think of - I replaced Table in your formula with the table name/range and the Text Column with the field name by inserting from the list in the calculated field box. However this did not work. if you dont put the correct formula it will not accept and do not offer any clues as to what you might need to change.

Any suggestions? I am needing to return comments along side a value to explain the number, the vaule and the comments are seperate fields.

Thanks


To return a text value from your source tables as a measure, try the following measure formula pattern:

Code:
=IF(COUNTROWS(VALUES(Table[TextColumn])) > 1, BLANK(),
   VALUES(Table[TextColumn])
 )
And your other question: no there is no way to limit what shows up on the slicer without modifying your underlying table data, sorry.
 
Upvote 0

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Here is a sample of what I am trying to pivot - top line is my column headers, detail is on second line. I need the Explanation to appear in the pivot next to the Variance
ISLine Item20122011Variance% Chg.Explanation

<tbody>
</tbody><colgroup><col><col><col span="3"><col><col><col></colgroup>
Other Income:Exchange (gain) or loss145,594(2,536)148,130(5841.0%)This account represents currency revaluation effect

<tbody>
</tbody><colgroup><col><col><col span="3"><col><col><col></colgroup>
 
Upvote 0

Forum statistics

Threads
1,214,991
Messages
6,122,628
Members
449,095
Latest member
bsb1122

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