>> any way to have the result in one variable?

Yes, the ONE VARIABLE answer is in RES.

Look...

The maximum value for your 10-bit ADC is 1024...

Multiply this by 2360 gives 2416640...

divide this by 10,000 gives 241

everything is within range of PBP's capabilities...

The dummy WORD value 'x' when used as x=ADC*2360 is irrelevant, you follow that immediately with your DIV32 statement so the correct value of 241 ends up in RES.

Remember that RES is a factor of TEN greater... ie RES=241 is actually 24.1 so just do the math to extract what you need.

You can't have floating points in integer math, sometimes you have to "think outside of the box" in order to achieve what you want.