Hi ! Need some Help with CSV file and Data Driven

Hi can someone please guide me through the below scenario

I have Excel sheet with 30 User ID and I want to POST it through CSV file but I have added CSV file in different way, And only Last row data is getting POST.

For now what happens is only day 1 sheet get Posted , How can I POST all DAY’s at a time?

Each sheet in Day is represents different Users

How can I POST all rows data in POSTman

Please find Below CSV and API request Format


That is not a CSV file if it has more than one sheet.

A CSV (comma separated values) file is basically plain text.

If you actually save that spreadsheet as a CSV file, it will remove all of the sheets apart from the first one. (Which I suspect is what is happening in this instance).

Postman works with plain text CSV files, not spreadsheets per se.

You can’t have the data on separate tabs, they need to be in the same sheet.

Or you will need to run it multiple times with separate files for each day (each with a single sheet).

Thanks @michaelderekjones now I have understand how others tab got removed after closing the sheet.