Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

remove x-axis values histogram

Hi on my histogram below i would like to erase Age... and (vide) on the x-axis. My version of pbix is January 2023.   Thanks  
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi Anonymous ,

    Could you please provide the related Fields setting of your histogram visual? Which field or measure be applied on Y-axis? You can create a measure or update the formula of measure which applied on Y-axis as below:

    Measure =
    IF (
        SELECTEDVALUE ( 'Table'[X-axis field] ) IN { "Age...", "(vide) " },
        BLANK (),
        [Y-axis field/measure]
    )

    If the above one can't help you, please provide some raw data in your table (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It would be helpful to find out the solution. You can refer the following links to share the required info:

    How to provide sample data in the Power BI Forum

     

    And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

    How to upload PBI in Community

    Best Regards