String to integer conversion

In excel I have “88.00%” in one cell, when I try to get this value I am getting 0.88.
Please help me how to convert this value to integer and multiply with 100 to get the exact value.
" 88" .

@skrishna, Use this

String.Format(“{0:0.00}%”,CDbl(“0.88”)*100)

Regards,
Dom :slight_smile:

1 Like