There are several columns in my excel file that include formulas, so I need to identify which columns contain the formulas.

There are several columns in my excel file that include formulas, so I need to identify which columns contain the formulas.
Hi,
One way of doing it..
You can try VBA scripts to check column has formula or not and run it form PAD.
https://learn.microsoft.com/en-us/office/vba/api/excel.range.hasformula
Sample Script:
Sheet1.Range("A2").HasFormula
Output will be True or False based on cell value.
Also, you can add loop to check multiple columns.
Regards
Kaif