How to automate a sample number based on another number

Hi

I would like to automate a field based on the total population number and some criteria

Ie
[whole population] <10, [sample number] = [whole population]
[whole population] between 10- 100, [sample number] = 11
[whole population] >100, [sample number] = 13

I almost have it with IF formatting, but have hit a snag.

Please help!
Mari

0 4 138
4 REPLIES 4

Which isโ€ฆ?

IF(([Dispatch Tray Quantity] < 6), [Dispatch Tray Quantity], 0)AND IF(([Dispatch Tray Quantity] < 101), 5, 0)

Thatโ€™s not how AND() works.

Iโ€™d recommend using IFS() if you have more than 2 situations, read that doc from previous post. You can always nest IF()s though.

IF( โ€ฆ , โ€ฆ , IF( โ€ฆ , โ€ฆ , โ€ฆ ) )

I will give this a go, I was really just winging it. Thank you very much

Top Labels in this Space