Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'd this (against a copy of the data!):
Select your range Edit|goto|special constants ok This should select all your +'s (if the +'s are the results of a formula, then Edit|paste special|values, first) then type: =column() and hit control Enter. This should fill all those cells with the number of the column that they're in. Then use a helper cell (F1) and use this formula: =IF(A1="","",A1&",")&IF(B1="","",B1&",")&IF(C1="", "",C1&",") &IF(D1="","",D1&",")&if(e1="","",E1&",") You'll end up with: 2,3, Now use another helper cell (G1) and use this formula: =IF(F1="","",LEFT(F1,LEN(F1)-1)) Drag both formulas down the table. Now select that last column (G) and copy|paste into notepad. tony wrote: I have a table as follow 1 2 3 4 5 A + B + + C + + + + How can I get saved on a txt file the following interpretation of the table A 1 B 2,3 C 1,3,4,5 Thanks -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pivit table- cell on spread sheet referencing pivot table field | Charts and Charting in Excel | |||
entry removed from source table remains in pivot table pull down | Excel Worksheet Functions | |||
Excel Pivot Table Plugin? (crosstab to data table) | Excel Discussion (Misc queries) | |||
PIVOT TABLE - Summary Table into a Databasae Table. | Excel Worksheet Functions | |||
create a source table from a special pasted value dynamic crossed table | Excel Programming |