Forum Discussion

tp365's avatar
tp365
Regular Visitor
1 year ago

SELECTEDVALUE() with Calculation Groups sometimes returning blanks(?) when used in a table

Hey All,

I am trying to build a report for water quality reporting. 

 

Context:

I have several parameters that are evaluated using a measure that is just ParameterName = AVERAGE(Parameter[ParameterName]).

These measures serve as the column headers in a table.  The rows are formed using a calculation group calculating that measure over different weeks in that month, the maximum weekly average, if the parameter is ph of Dissolved Oxygen, report the Min or Max value recorded, etc.

 

Problem:

Certain Calculation Items are not returning values when using SELECTEDVALUE().  This is a problem because i am attempting to conditionally format based on the Calculation Item.

 

Here a simple version of the table i am using to troubleshoot:

The measure for the SelectedValue column is 

SelectedValue = SELECTEDVALUE(Group1[Calculation])
 
I dont think the blanks are actual blanks, because when i write a measure saying If its blank, display something else, that doesn't work either.  Neither does a blank string.
 
Focusing on MAX Weekly Avg - the calculation item is:

 

This returns nothing? blank? empty?  not sure...

 

However this calc item returns the name.

 

Am i missing something?

 

 

5 Replies

  • Hello tp365,

     

    Can you please try this approach:

    MAX Weekly Avg =
    IF(
        OR(
            CONTAINSSTRING(SELECTEDMEASURENAME(), "Eff pH"),
            CONTAINSSTRING(SELECTEDMEASURENAME(), "Eff DO")
        ),
        BLANK(),
        MAXX(
            ADDCOLUMNS(
                VALUES('Calendar'[DMR Week]),
                "WeeklyValue", CALCULATE(SELECTEDMEASURE())
            ),
            [WeeklyValue]
        )
    )
    
    • tp365's avatar
      tp365
      Regular Visitor

      Thanks for the reply Sahir_Maharaj.

       

      The suggested Calculation Item does give the appropriate maximum weekly average, however the SelectedValue is still blank.

       

      Oddly enough, the ordinal will populate, but when used in a conditional format, it doesn't register at all, even under the "else" condition.

       

      Here is the Measure i am applying as conditional formatting using field values for the column represented here:

      It does not recognize if i use SelectedValues(DMR[Calculation]) or SelectedValues(DMR[Ordinal]) for [MAX Weekly Avg] even though the ordinal actually populates.

       

      • nk1025's avatar
        nk1025
        Regular Visitor

        tp365 were you ever able to resolve this issue? I think this behavior is currently impeding my attempts to implement conditional formating for my calculation groups as well.

  • I am experiencing this issue as well. Even when I try SELECTEDVALUE('Calculation group'[Ordinal]), it does not give the ordinal.

    What I did to solve it was: create a new table which summarizes the calculation group table. Create a relationship between the calculation group table and the new table. And use the new table columns in measurs for conditional formatting.