Mac excel: saving a .csv with a set filename & the text in two different cells

jlal1990

New Member
Joined
Jul 13, 2019
Messages
7
Hi guys,

Posting a lot on here so thanks for your help.

The title should explain it all. I have a file name 'Growbots CSV' which i want all files to retain, but i would also like to add the values from two different cells to that text. the cells contain the words 'Film' (cell 1) and '50k' (cell 2). Currently this is what i have for just adding the filename, so if there is a way of adapting the code in a mac friendly way id be really grateful for your thoughts!

Code:
Sub GBcsv()'
' Makes a copy of the sheet as a CSV file and makes a new file called Growbots CSV.csv
'


'
    Sheets("Growbots Ingestion").Select
    Range("A1").Select
    Sheets("Growbots Ingestion").Select
    Sheets("Growbots Ingestion").Copy
    ChDir "/Users/joshualally/Documents/SALES DATA/DATA DUMP/"
    ActiveWorkbook.SaveAs FileName:= _
"/Users/joshualally/Documents/SALES DATA/DATA DUMP/GrowBots CSV.csv", _
        FileFormat:=xlCSVUTF8, CreateBackup:=False
    ActiveWindow.Close
    Range("A1").Select
    Sheets("Functions").Select
End Sub
 
Last edited:

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.

Forum statistics

Threads
1,214,787
Messages
6,121,569
Members
449,038
Latest member
Guest1337

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