Command BAT from Macro

JustinJ

New Member
Joined
Sep 19, 2020
Messages
16
Office Version
  1. 2013
Platform
  1. Windows
Hi Everyone,
I currently have a BAT file that I would like to get rid of and run from a macro.

The idea is that the macro would not have to call the BAT file but the BAT contents would live within the macro.

Code:
pushd "\\nw\data\787FlexTrack\Data\Final-Body-Join\30-IRMC_Extractions\10-Active\"
dir /b /s > 10-ACTIVE_DIRECTORY.txt
popd

pushd "\\nw\data\787FlexTrack\Data\Final-Body-Join\30-IRMC_Extractions\20-Predecessor\"
dir /b /s > 20-PREDECESSOR_DIRECTORY.txt
popd

pushd "\\nw\data\787FlexTrack\Data\Final-Body-Join\30-IRMC_Extractions\30-Predecessors-Pred\"
dir /b /s > 30-PREDECESSORS-PRED_DIRECTORY.txt
popd

pushd "\\nw\data\787FlexTrack\Data\Final-Body-Join\30-IRMC_Extractions\999-Archive\"
dir /b /s > 999-ARCHIVE_DIRECTORY.txt
popd
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Hi Everyone,
I currently have a BAT file that I would like to get rid of and run from a macro.

The idea is that the macro would not have to call the BAT file but the BAT contents would live within the macro.

Code:
pushd "\\nw\data\787FlexTrack\Data\Final-Body-Join\30-IRMC_Extractions\10-Active\"
dir /b /s > 10-ACTIVE_DIRECTORY.txt
popd

pushd "\\nw\data\787FlexTrack\Data\Final-Body-Join\30-IRMC_Extractions\20-Predecessor\"
dir /b /s > 20-PREDECESSOR_DIRECTORY.txt
popd

pushd "\\nw\data\787FlexTrack\Data\Final-Body-Join\30-IRMC_Extractions\30-Predecessors-Pred\"
dir /b /s > 30-PREDECESSORS-PRED_DIRECTORY.txt
popd

pushd "\\nw\data\787FlexTrack\Data\Final-Body-Join\30-IRMC_Extractions\999-Archive\"
dir /b /s > 999-ARCHIVE_DIRECTORY.txt
popd


Okay, well, information to me is that a macro calling a bat file is quite obtuse.

Fine then. how do I use a command to call a macro?
 
Upvote 0

Forum statistics

Threads
1,215,261
Messages
6,123,939
Members
449,134
Latest member
NickWBA

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