Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Values getting fan out

So i have a dimension "Market level"  and I have a fact table with center id, and 2 metrics . Whenever I am bringing in market levl column in the visual its getting fann out and I am getitng 4 rows(instead of 1). I double checked the relation ship is  1 to many. Can anyone guide me what could be causing this? Thanks for your help!

 

 

this is the output after brining the dimension column in visual

 

  • Anonymous , are your measure using +0 or some handling of blank value ? if yes try to avoid that

     

    If this does not help
    Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

3 Replies

  • Anonymous , are your measure using +0 or some handling of blank value ? if yes try to avoid that

     

    If this does not help
    Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

    • Anonymous's avatar
      Anonymous
      Not applicable

      amitchandak , thank you for your response. you think this could be issue ?

      Volume = COALESCE(sum(Actuals_by_Month[vol]),0)
      • Anonymous's avatar
        Anonymous
        Not applicable

        This is solved when I converted Volume = COALESCE(sum(Actuals_by_Month[vol]),0) to Volume = sum(Actuals_by_Month[vol])