@Anonymous
It is formatted in excel as percentage but it is actual stored in decimal , so you need to do the conversion in flow instead like below :

To format it as percentage you can use the expression below:
You can replace outputs('Compose') with your excel column
concat(string(mul(outputs('Compose'),100)),'%')
Hope this works for you!