Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Calculated Column with a result between two values -- if statement

Hello,   I am currenctly trying to write a calculated column to Filter Visuals. I would like to use it to filter what weight range a shipment is in.   Now I have done this (sorry, it won't let m...
  • v-jianboli-msft's avatar
    3 years ago

    Hi Anonymous ,

     

    Based on your description, I have created a simple sample:

    Please try:

     

    Filter_Gewichtstaffel =
    SWITCH (
        TRUE (),
        frkostsoll[gewicht] >= 0
            && frkostsoll[gewicht] <= 1.99, "0-1,99",
        frkostsoll[gewicht] >= 2
            && frkostsoll[gewicht] <= 4.99, "2-4,99",
        frkostsoll[gewicht] >= 5
            && frkostsoll[gewicht] <= 9.99, "5-9,99",
        frkostsoll[gewicht] >= 10
            && frkostsoll[gewicht] <= 14.99, "10-14,99",
        frkostsoll[gewicht] >= 15
            && frkostsoll[gewicht] <= 24.99, "15-24,99",
        frkostsoll[gewicht] >= 25
            && frkostsoll[gewicht] <= 29.99, "25-29,99",
        frkostsoll[gewicht] >= 30
            && frkostsoll[gewicht] <= 39.99, "30-39,99",
        frkostsoll[gewicht] >= 40
            && frkostsoll[gewicht] <= 59.99, "40-59,99",
        frkostsoll[gewicht] >= 60
            && frkostsoll[gewicht] <= 79.99, "60-79,99",
        frkostsoll[gewicht] >= 80, ">=80",
        "N.v."
    )
    

     

    Final output:

    Best Regards,

    Jianbo Li

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.