I tried following formula..... =ARRAYFORMULA(SUBSTITUTE(IMPORTHTML("https://niftyinvest.com/option-chain/BAJFINANCE","Table",1)and was able to get the data but with two symbols - and *. Now I want to remove * and - symbol to be replaced by zero. How to do that plz ???
CodePudding user response:
Try the following formula:
=ARRAYFORMULA(SUBSTITUTE(SUBSTITUTE(IMPORTHTML("https://niftyinvest.com/option-chain/BAJFINANCE","Table",1),"-", "0"), "*", ""))