Forum Discussion

vjnvinod's avatar
vjnvinod
Impactful Individual
1 year ago
Solved

Map visual Support

I'm building a Power BI dashboard to visualize White Land Tax across individual land plots in Saudi Arabia, and I would really appreciate your help or guidance. 🔍 Objective: Display each land pa...
  • v-kpoloju-msft's avatar
    v-kpoloju-msft
    1 year ago

    Hi vjnvinod,
    Thank you for reaching out to the Microsoft fabric community forum. 


    After thoroughly reviewing the details you provided, I was able to reproduce the scenario, and it worked on my end. I have used it as sample data on my end and successfully implemented it.

    Dax Measure For Tax Zone Classification:

    Tax Zone Classification =
    
    SWITCH(
    
        TRUE(),
    
        'White Land Tax'[Land Status ( Developed / Undeveloped / Partially Developed/WIP)] = "Partially Developed", "Partial Tax",
    
        'White Land Tax'[Land Status ( Developed / Undeveloped / Partially Developed/WIP)] = "Undeveloped", "Full Tax",
    
        'White Land Tax'[Exemption from WLT (Yes or No)] = "Yes", "Tax Exempted",
    
        "Full Tax"
    
    )

     

     

    I am also including .pbix file for your better understanding, please have a look into it:

    If this post helps, then please give us ‘Kudos’ and consider Accept it as a solution to help the other members find it more quickly.

    Thank you for using Microsoft Community Forum.