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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Syndicate_Admin
Administrator
Administrator

sum up to a certain point

hello, I am very new to power bi and in dax language, I wanted to make a query with an example, the column "cto level of line" is a simple sum of a certain field, what formula can I occupy so that the result reaches only the column site?, in the example to the store there are values in negative and in postive, I would like that in each warehouse I brought the total of the site and for everyone showed the value 0 that is the result if we only saw up to the site.

Cikfrid_2-1639198960770.png

Cikfrid_3-1639199138262.png

1 ACCEPTED SOLUTION
v-jayw-msft
Community Support
Community Support

Hi @Syndicate_Admin ,

 

You could try ISINSCOPE() or ISFILTERED() function.

https://docs.microsoft.com/en-us/dax/isinscope-function-dax 

https://docs.microsoft.com/en-us/dax/isfiltered-function-dax 

Then create a measure like below to return different value depend on the ISINSCOPE() result.

IF(ISINSCOPE([column]),[sum],0)

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

1 REPLY 1
v-jayw-msft
Community Support
Community Support

Hi @Syndicate_Admin ,

 

You could try ISINSCOPE() or ISFILTERED() function.

https://docs.microsoft.com/en-us/dax/isinscope-function-dax 

https://docs.microsoft.com/en-us/dax/isfiltered-function-dax 

Then create a measure like below to return different value depend on the ISINSCOPE() result.

IF(ISINSCOPE([column]),[sum],0)

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.