OK I can find the percentage of a number against another:
Lets say A=45 and B=90

Label1.text = A * 100 \ B

The answer would be 50, as 45 is 50% of 90

How do I go the other way?

I have the percentage, 50%, what calculation do I do to tell me that 50% of 90 is 45?

Thanks