I want to basically do a simple calculation.
If the the duration is >= 120, then duration - 15 else show duration
If the the duration is >= 180, then duration - 30 else show duration
If the the duration is >= 360, then duration - 101 else show duration
If the the duration is >= 120, then duration - 15 else show duration
If the the duration is >= 180, then duration - 30 else show duration
If the the duration is >= 360, then duration - 101 else show duration
=switch( iif(Fields!CheckOutDuration.Value >= 120,
Fields!CheckOutDuration.Value - 15, Fields!CheckOutDuration.Value),
iif(Fields!CheckOutDuration.Value >= 180, Fields!CheckOutDuration.Value -
30, Fields!CheckOutDuration.Value),iif(Fields!CheckOutDuration.Value >= 360,
Fields!CheckOutDuration.Value - 101, Fields!CheckOutDuration.Value))