I used the data scraping tool to get all the information that i need (device name and listed price including VAT. then I wrote it down to Excel with Write range so far so good.
But when I want to add some forumlas to the sheet, Excel cannot read the pricetag someting with the format:
I would like to change it into Valuta or numbers, some format that Excel can use to execute math formulas, such as calculate “Price incl VAT to Price excl VAT”
Can i have a view of that column alone as a screenshot to make sure that next to 649 is always ,- in 659,-
or will have value instead of -
Do you need that value for your consideration buddy
try with row.item(“Price incl VAT”) buddy instead of row(“Price incl VAT”) in left side and in right side as well
Convert.ToDouble(row.item(“Price incl VAT”).ToString.Replace(“,-”," ").Trim)
The reason why we get this error is the column Price incl VAT is of type string while we are trying to assign a double value… that why showing error " mplicit conversions from String to integer are not allowed by the option strict on"
Here I am with the next one, could not find .item within the editor, when I try this I get the following error “item is not a member of System.Data.DataTable”