Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
I have a Pivot table with some numbers in it. Is there a way to replace the numbers with a text? For example: replace all numbers 1 with "yes" . Is this possible? If not whats the best way to achieve this? Regards, Vinstream |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Only by changing your data source. Eg.
Sub Test() Dim rCell As Range For Each rCell In Range("DataSource").Columns _ (2).SpecialCells(xlCellTypeConstants, xlNumbers).Cells If rCell 1 Then rCell = "yes" Next rCell End Sub "vinstream" wrote in message ... Hi, I have a Pivot table with some numbers in it. Is there a way to replace the numbers with a text? For example: replace all numbers 1 with "yes" . Is this possible? If not whats the best way to achieve this? Regards, Vinstream |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pivot table treating numbers as text in value field | Excel Worksheet Functions | |||
Pivot Table with Data replace error | Excel Discussion (Misc queries) | |||
Displaying Text, not numbers, in Pivot Table | New Users to Excel | |||
Making Text into Numbers, for Pivot Table Cubes | Excel Worksheet Functions | |||
Pivot Table keep apart cells text that I've formatted as numbers | Excel Worksheet Functions |