Forum Discussion

Kin_cta's avatar
Kin_cta
Regular Visitor
6 months ago
Solved

I need help graphing my fields parameters

I want to create a dynamic chart, and I found the option to do it using field parameters. I selected the corresponding columns, which contain decimal data, but when I try to create the chart, i...
  • dk_dk's avatar
    dk_dk
    6 months ago

    The Field parameter should be referencing the measures, not the column, like so:

    RMC = {
        ("RMC_AGUA", NAMEOF('water'[m_RMC_AGUA]), 0),
        ("RMC_ENERGIA", NAMEOF('water'[m_RMC_ENERGIA]), 1),
        ("RMC_MATERIALES", NAMEOF('water'[m_RMC_MATERIALES]), 2),
        ("RMC_SUELO", NAMEOF('water'[m_RMC_SUELO]), 3)
    }



    And you should put the measures on the original table (i called mine water as an example)
    When you click on the measure you should be able to change the home table in the top left corner.