I have column A B C D
how to search in Excel (not csv) if “test” in column A – and if found
I want to receive A B C D column’s
thanks for any help
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re working client-side (i.e. your code run on user machine), you can to use Excel API, like describe here: How to: Search for Text in Worksheet Ranges
Server-side (like in an ASP.NET application) it’s a bit harder, as usually you can’t install Microsoft Office on servers. So you can open your XLSX file by using an OpenXML API and to search it manually.