Hi @Mattw112IG ,
I have used a text input here, but it could be any value

With(
{
vMod:
Mod(
Round(
Value(YourTextInput.Text),
1
),
1
),
vWhole:
RoundDown(
Value(YourTextInput.Text),
0
)
},
vWhole +
If(
vMod <= 0.25,
0,
vMod > 0.25 && vMod < 0.75,
0.5,
1
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.