How to input datat in the next column of csv using batch

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
banderasxp
Posts: 1
Joined: 02 Feb 2023 18:52

How to input datat in the next column of csv using batch

#1 Post by banderasxp » 02 Feb 2023 18:59

Hi good day. I created this bat file (namely 21.bat) that input data to db.csv column 1.
Now, I need this code for 22.bat to enter data to the next column (B2, B3,B4,B5 etc...) of db.csv

Hope you can help me.

Code: Select all

@echo off
echo 21st of the month.
echo Input "8" if present. "Enter" if absent.
echo.
set /p Klay=Klay:
set /p Ibara=Ibara:
set /p Fidel=Fidel:


echo.
echo %Klay% >> db.csv
echo %Ibara% >> db.csv
echo %Fidel% >> db.csv
pause

Post Reply