Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
TriveniN
Helper II
Helper II

Performance Issue

Below measure is taking so much time to load data and some time througing an error Memery out of error

Below measure is using  Status is column and that was created by me.

 

Status =
SWITCH( TRUE(),
vw_Acquired_Property_BRC[Owner__c] = "N/A" ,vw_Acquired_Property_BRC[Unit_Status__c],
vw_Acquired_Property_BRC[Owner__c])

 

UnitStatus =

Var _LST = CALCULATE(MAX(vw_Acquired_Property_BRC[LastModifiedDate]) ,
                        vw_Acquired_Property_BRC[Table_name] = "Competitor")

VAR _ActiveRecrds = CALCULATETABLE( VALUES(vw_Acquired_Property_BRC[Owner__c]) ,
                        (vw_Acquired_Property_BRC[Table_name] = "Competitor" &&
                         vw_Acquired_Property_BRC[LastModifiedDate] >= _LST-1))

VAR _Active = CALCULATE( VALUES(vw_Acquired_Property_BRC[Status]) ,
              ( vw_Acquired_Property_BRC[Table_name] IN
              { "Acquired_Property" ,"Build_To_Rent_Communities" ,"Competitor"}
              && ( vw_Acquired_Property_BRC[Owner__c] IN _ActiveRecrds
              && vw_Acquired_Property_BRC[Table_name] = "Competitor")
))

VAR _ALL = CALCULATE( VALUES(vw_Acquired_Property_BRC[Status]))
                     
Return
SWITCH( TRUE(),
        SELECTEDVALUE( ReportType[Type] ) = "Active" , _Active,
        SELECTEDVALUE( ReportType[Type] ) = "All"    , _ALL)
 
Please suggest how to proceed ?
1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@TriveniN Going to be super difficult to troubleshoot performance-related stuff without access to the PBIX. That said, you might try some or all of the following changes:

UnitStatus =
VAR _Table = 
  FILTER(
    SELECTCOLUMNS(
      'vw_Acquired_Property_BRC', 
      "LastModifiedDate",[LastModifiedDate],
      "Table_name",[Table_name],
      "Owner_c",[Owner_c],
      "Status", [Status]
    ),
    [Table_name] = "Competitor"
  )
Var _LST = MAXX( _Table, [LastModifiedDate] )

VAR _ActiveRecrds = 
  FILTER(
    SELECTCOLUMNS(
      __Table,
      "Owner_c",[Owner_c]
    ),
    [Table_name] = "Competitor" && [LastModifiedDate] >= _LST - 1
  )

VAR _Active = 
  FILTER(
    SELECTCOLUMNS(
      __Table,
      "Status",[Status]
    ),
    [Owner_c] IN _ActiveRecrds 
  )

VAR _ALL = DISTINCT(vw_Acquired_Property_BRC[Status])
                     
Return
SWITCH( TRUE(),
        SELECTEDVALUE( ReportType[Type] ) = "Active" , _Active,
        SELECTEDVALUE( ReportType[Type] ) = "All"    , _ALL)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Community Champion
Community Champion

@TriveniN Going to be super difficult to troubleshoot performance-related stuff without access to the PBIX. That said, you might try some or all of the following changes:

UnitStatus =
VAR _Table = 
  FILTER(
    SELECTCOLUMNS(
      'vw_Acquired_Property_BRC', 
      "LastModifiedDate",[LastModifiedDate],
      "Table_name",[Table_name],
      "Owner_c",[Owner_c],
      "Status", [Status]
    ),
    [Table_name] = "Competitor"
  )
Var _LST = MAXX( _Table, [LastModifiedDate] )

VAR _ActiveRecrds = 
  FILTER(
    SELECTCOLUMNS(
      __Table,
      "Owner_c",[Owner_c]
    ),
    [Table_name] = "Competitor" && [LastModifiedDate] >= _LST - 1
  )

VAR _Active = 
  FILTER(
    SELECTCOLUMNS(
      __Table,
      "Status",[Status]
    ),
    [Owner_c] IN _ActiveRecrds 
  )

VAR _ALL = DISTINCT(vw_Acquired_Property_BRC[Status])
                     
Return
SWITCH( TRUE(),
        SELECTEDVALUE( ReportType[Type] ) = "Active" , _Active,
        SELECTEDVALUE( ReportType[Type] ) = "All"    , _ALL)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler  Thanks much 🙂. Its worked for me.

Going forward I will try to attach PBIX file.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.