@PA 松村優
Importing and vectorizing data via the portal UX currently does not accommodate delimited text scenarios such as CSV files. Users will have to construct their indexer and skillset manually, referring to the documentation- Search over CSV blobs - Azure AI Search | Microsoft Learn
You should follow the instructions in the documentation to update your indexer and adjust the skillset definition. Specifically, you need to modify the input for the SplitSkill to "/document/columnName," where "columnName" represents the desired column to be chunked and vectorized.
Additionally, you must update your index projections to include any additional fields you wish to incorporate into each document.
Let us know.