Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a spreadsheet with 3 sheets. The first sheet contains original data.
The third sheets contains lookup data. The second sheet has formulas in several rows that CONCATENATE data from several cells in sheet one into a single cell in sheet two or have LOOKUP formulas that convert data from sheet one based on a look-up in sheet three. Question: Is it possible to export sheet two as a csv file without formulas so only the replaced text strings show? If so, how? Thanks, your help has been great with my previous two issues on this project. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You cannot save just one sheet.
Copy the cells to a new sheet in a new workbook. Paste Special as Values. Save that workbook as *.CSV Gord Dibben MS Excel MVP On Wed, 13 Aug 2008 15:52:00 -0700, Pat wrote: I have a spreadsheet with 3 sheets. The first sheet contains original data. The third sheets contains lookup data. The second sheet has formulas in several rows that CONCATENATE data from several cells in sheet one into a single cell in sheet two or have LOOKUP formulas that convert data from sheet one based on a look-up in sheet three. Question: Is it possible to export sheet two as a csv file without formulas so only the replaced text strings show? If so, how? Thanks, your help has been great with my previous two issues on this project. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
what do you mean by export? just save as? perhaps copy sheet 2 and paste as values in a new workbook then save the new workbook as a cvs. you could ever automate the process if you need to do it on a regular basis.... Sub PatSaveAsCVS() Application.DisplayAlerts = fale Sheets("sheet2").Activate Cells.Copy Workbooks.Add ActiveSheet.Paste ActiveWorkbook.SaveAs Filename:= _ "C:\Your\flie\path\PatSaveAsCVS.csv", FileFormat _ :=xlCSV, CreateBackup:=False ActiveWindow.Close Application.DisplayAlerts = True End Sub regards FSt1 "Pat" wrote: I have a spreadsheet with 3 sheets. The first sheet contains original data. The third sheets contains lookup data. The second sheet has formulas in several rows that CONCATENATE data from several cells in sheet one into a single cell in sheet two or have LOOKUP formulas that convert data from sheet one based on a look-up in sheet three. Question: Is it possible to export sheet two as a csv file without formulas so only the replaced text strings show? If so, how? Thanks, your help has been great with my previous two issues on this project. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Save, save as, page setup dimmed out in unprotected excel sheet? | Excel Discussion (Misc queries) | |||
SAVE and SAVE AS options disappeared from the drop down FILE menu | Excel Discussion (Misc queries) | |||
Save As and save current numbers not the actual formulas and links | Excel Discussion (Misc queries) | |||
how to get disk icon on save button of save as dialog like 2000 | Excel Discussion (Misc queries) | |||
when i save xls file, debug script is running and canno't save fil | Excel Discussion (Misc queries) |