Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Using ALLEXCEPT or ALL not working

Hello,

 

Need some help with DAX please.

 

I need to count [Number of Active Awards] within a financial period. Then slice this measure by any dimension in the model, not only dates. Here's part of the model. Awards[Award Start Date] = Dates[Cal Date] (active relationship) and Awards[Award End Date] = Dates[Cal Date] (inactive relationship). 

 

 

 

THE PROBLEM

 

If I use ALL(awards), I get a correct count only if I slice/filter by a date but slice by any other column, I get the total in all rows.

 

Total Active Awards = 
VAR MaxPeriod = MAX( dates[Cal Date] )
VAR MinPeriod = MIN( dates[Cal Date] )
RETURN
CALCULATE( COUNTROWS( awards ),
	  FILTER (
		ALL( awards ),		
awards[Award Start Date] <= MaxPeriod && awards[Award End Date] >= MinPeriod ) )

 

 

 

If I use ALLEXCEPT(awards, awards[Award Division], projects[Project Status]), I get the correct result as below but then every new dimension I want to slice by I will have to add this column to the ALLEXCEPT. Surely I'm not using the correct DAX function here, please advise?

 

Total Active Awards = 
VAR MaxPeriod = MAX( dates[Cal Date] )
VAR MinPeriod = MIN( dates[Cal Date] )
RETURN
CALCULATE( COUNTROWS( awards ),
	  FILTER (
		ALLEXCEPT( awards, awards[Award Division], projects[project status] ),
		awards[Award Start Date] <= MaxPeriod
		&& awards[Award End Date] >= MinPeriod
	)
)

 

 

 

 

 

  • Anonymous's avatar
    Anonymous
    8 years ago

    The pattern you use for solving the "events in progress" requires that you don't have any active relationship with the date table.

    If you inactivate the second relationship between Awards and Dates and then use this measure it will give you the active awards within the min/max dates.

     

    Total Active Awards = 
    VAR MaxPeriod = MAX( dates[Cal Date] )
    VAR MinPeriod = MIN( dates[Cal Date] )
    RETURN
    CALCULATE( COUNTROWS( awards ),
    	  FILTER (
    		awards,		
    awards[Award Start Date] <= MaxPeriod && awards[Award End Date] >= MinPeriod ) )

    There are several good articles written on the subject of "events in progress".

     

    Br,

    Magnus 

17 Replies

  • Hi Anonymous, give this a try:

     

    Total Active Awards = 
    VAR MaxPeriod = MAX( dates[Cal Date] )
    VAR MinPeriod = MIN( dates[Cal Date] )
    RETURN
    CALCULATE( COUNTROWS( awards ),
    	  FILTER (
    		ALL(awards[Award Start Date]),
    		awards[Award Start Date] <= MaxPeriod
    		&& awards[Award End Date] >= MinPeriod
    	)
    )

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      DAX0110 thank you. Your code returned an error "A single value for column 'Award End Date' in table awards cannot be determined. This can happen..."

       

      I then added awards[Award End Date] in the ALL but this is returning less records (587) than I expected (1391).

       

      Total Active Awards = 
      VAR MaxPeriod = MAX( dates[Cal Date] )
      VAR MinPeriod = MIN( dates[Cal Date] )
      RETURN
      CALCULATE( COUNTROWS( awards ),
      		FILTER (
      		       ALL( awards[Award Start Date],awards[Award End Date] ),
      		        awards[Award Start Date] <= MaxPeriod
      		            && awards[Award End Date] >= MinPeriod
      		           )
      )
      • DAX0110's avatar
        DAX0110
        Resolver V

        mmm... OK, my bad, maybe this would work:

         

        Total Active Awards = 
        VAR MaxPeriod = MAX( dates[Cal Date] )
        VAR MinPeriod = MIN( dates[Cal Date] )
        RETURN
        CALCULATE( COUNTROWS( awards ),
                ALL(awards[Award Start Date]),
        awards[Award Start Date] <= MaxPeriod, awards[Award End Date] >= MinPeriod )
  • Anonymous's avatar
    Anonymous
    Not applicable

    Give this a try... If you use ALL in filter conditions it will just ignore the slicers and overwrites with all the rows.

     

    Total Active Awards = 
    VAR MaxPeriod = MAX( dates[Cal Date] )
    VAR MinPeriod = MIN( dates[Cal Date] )
    RETURN
    CALCULATE( COUNTROWS( awards ),
    	  FILTER (
    		'awards',		
                    awards[Award Start Date] <= MaxPeriod
    		&& awards[Award End Date] >= MinPeriod
    	)
    )

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      Anonymous thank you. Unfortunately, this is not producing expected results. I'm aware ALL will remove all the filters, the problem I'm having is as I explained above. 

    • Anonymous's avatar
      Anonymous
      Not applicable

      v-chuncz-msft, thank you. This function doesn't work either, gives me lesser records than expected.

       

      I need ALL records from table 'awards' where awards[Award Start Date] <= MaxPeriodDate && awards[Awards End Date] >= MinPeriodDate. Then I need to be able to slice this number by other dimensions, not only dates, as per the model I sent in my question.

  • Anonymous's avatar
    Anonymous
    Not applicable

    The pattern you use for solving the "events in progress" requires that you don't have any active relationship with the date table.

    If you inactivate the second relationship between Awards and Dates and then use this measure it will give you the active awards within the min/max dates.

     

    Total Active Awards = 
    VAR MaxPeriod = MAX( dates[Cal Date] )
    VAR MinPeriod = MIN( dates[Cal Date] )
    RETURN
    CALCULATE( COUNTROWS( awards ),
    	  FILTER (
    		awards,		
    awards[Award Start Date] <= MaxPeriod && awards[Award End Date] >= MinPeriod ) )

    There are several good articles written on the subject of "events in progress".

     

    Br,

    Magnus 

    • Anonymous's avatar
      Anonymous
      Not applicable

      Anonymous,

       

      Brilliant that works; however, is it good practice to do this in the model because this will break other measures that are using this active relationship? Is there not a DAX function I can use to diactivate an active relationship just within that one measure (as in an opposite of USERELATIONSHIP)

      • Anonymous's avatar
        Anonymous
        Not applicable

        An alternative way without inactivating the relationship could be to adjust the code and use the ALLSELECTED to remove the effect of the relationship with the dates table.

         

        This should work in similar way:

        Total Active Awards = 
        VAR MaxPeriod = MAX( dates[Cal Date] )
        VAR MinPeriod = MIN( dates[Cal Date] )
        RETURN
        CALCULATE( COUNTROWS( awards ),
        	  FILTER (
        		ALLSELECTED( awards ),		
        awards[Award Start Date] <= MaxPeriod && awards[Award End Date] >= MinPeriod ) )

         

        Hard to say what is good practice and not in this case since it depends very much on the rest of your model.
        But please try different ways and see what seems to be best suitable for you!

         

        Br,

        Magnus