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

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
3mmanuel_12
Regular Visitor

Total End Formula

Hello everyone,

I am new to Power BI and currently working with sample sales data. I’ve encountered a calculation challenge and was hoping someone could help.

I have a summary of sales, and I would like to calculate the total sales based on a specific set of rows — for example, rows with indices 3, 4, 5, 6, 7, and 13.

Has anyone worked on a similar scenario or could advise on the best approach to achieve this?

Thank you in advance for your guidance!

 

3mmanuel_12_0-1763724962730.png

 

3 ACCEPTED SOLUTIONS

Aw, I see, you dont want to sum all the rows belonging to the segment, rather you sum only certain rows in the segment. In that case forget about my solution.

View solution in original post

Hi @3mmanuel_12 
You can try this. It will convert that text into a virtual table inside a measure, with no extra tables.

 

My Total :=
VAR IsFormula = SELECTEDVALUE('Cernol Template'[Totalling Type]) = "Formula"
VAR FormulaText = SELECTEDVALUE('Cernol Template'[Totalling]) -- e.g. "3,4,5,6,7,13"

VAR FormulaTable =
ADDCOLUMNS(
TEXTSPLIT(FormulaText, ","), -- → {"3","4","5","6","7","13"}
"Seq", VALUE([Value]) -- convert to number
)

RETURN
IF(
IsFormula,
CALCULATE(
'_Acc Ledger'[Total Amount],
TREATAS(FormulaTable, '_Acc schedule'[L1 Sequence])
),
'_Acc Ledger'[Total Amount]
)

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Jaywant Thorat | MCT | Data Analytics Coach
Linkedin: https://www.linkedin.com/in/jaywantthorat/

View solution in original post

v-dineshya
Community Support
Community Support

Hi @3mmanuel_12 ,

Thank you for reaching out to the Microsoft Community Forum.

 

Please try below two solutions.

 

1. Refer below DAX measure.

 

Total Sales Selected =
CALCULATE(
SUM('Sales'[Amount]),
'Sales'[Header] IN {
"FOOD INDUSTRY",
"GENERAL INDUSTRIAL",
"HORECA",
"QSR",
"HEALTHCARE",
"HYGIENE SHOP"
}
)

 

2.   You can add a logical/grouping column in Power Query.

 

Add Column --> Conditional Column

 

Example:

 

Header                     IncludeInTotal
FOOD INDUSTRY           1
HORECA                        1
GENERAL INDUSTRIAL  1

Total Sales Selected =
CALCULATE(
SUM('Sales'[Amount]),
'Sales'[IncludeInTotal] = 1
)

 

I hope this information helps. Please do let us know if you have any further queries.

 

Regards,

Dinesh

View solution in original post

10 REPLIES 10
v-dineshya
Community Support
Community Support

Hi @3mmanuel_12 ,

Thank you for reaching out to the Microsoft Community Forum.

 

Please try below two solutions.

 

1. Refer below DAX measure.

 

Total Sales Selected =
CALCULATE(
SUM('Sales'[Amount]),
'Sales'[Header] IN {
"FOOD INDUSTRY",
"GENERAL INDUSTRIAL",
"HORECA",
"QSR",
"HEALTHCARE",
"HYGIENE SHOP"
}
)

 

2.   You can add a logical/grouping column in Power Query.

 

Add Column --> Conditional Column

 

Example:

 

Header                     IncludeInTotal
FOOD INDUSTRY           1
HORECA                        1
GENERAL INDUSTRIAL  1

Total Sales Selected =
CALCULATE(
SUM('Sales'[Amount]),
'Sales'[IncludeInTotal] = 1
)

 

I hope this information helps. Please do let us know if you have any further queries.

 

Regards,

Dinesh

Hi @3mmanuel_12 ,

We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet. And, if you have any further query do let us know.

 

Regards,

Dinesh

Hi @3mmanuel_12 ,

We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet. And, if you have any further query do let us know.

 

Regards,

Dinesh

Jaywant-Thorat
Super User
Super User

Understanding the Problem: You want to calculate Total Sales based on a specific set of rows, e.g., rows 3, 4, 5, 6, 7, 13, similar to how your Excel sheet uses a formula row.

 

Solution: First understand that, Row numbers doesnt exist in Power BI, so we need to create an INDEX helper-column in your table, which will act as row identifier and then create a measure that sums only selected rows.

Step1) To add Row Index Number, follow the path:

Home -> Transform Data -> Power Query Editor -> Add Column -> Index Colum
Step2) Create a measure that sums only selected rows

Total Sales (Selected Rows) = CALCULATE( SUM('Sales'[Amount]), 'Sales'[Index] IN {3,4,5,6,7,13} )

Done. 

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Jaywant Thorat | MCT | Data Analytics Coach
Linkedin: https://www.linkedin.com/in/jaywantthorat/

zenisekd
Super User
Super User

Hi @3mmanuel_12 
You could achieve this by adding a groupped column, which would distinct the total sales category supposed to be. Either directly in Power BI desktop or in Power query, then you create a matrix, where you use this new column with Header in a matrix and amount in values 🙂 

zenisekd_0-1763726077542.pngIn the visual format you can later play with what totals you want to see.

 

You can tell me if i'm wrong but in my opinion , i cannot use this method bcs all formulas in the column Totalling will be dynamic.

Aw, I see, you dont want to sum all the rows belonging to the segment, rather you sum only certain rows in the segment. In that case forget about my solution.

amitchandak
Super User
Super User

@3mmanuel_12 , We need to add these to the table as an additional row , you can add them in separate table and append in power query or DAX. You need have order for that. 

And then you can have calculation like 

if(Max(Table[Header]) = "Sales Total 1", calculate([Measure], Filter(all(Header), Table[Header Order] in {3,4,5,6,713} ) ), [Measure]) 

You can use switch and for both Sales Total 1 and Sales Total 2

 

I have done using additional table, but can be done using same table too

Power BI How to get the P&L formatting right: https://youtu.be/C9K8uVfthUU
Power BI How to get two columns format Profit and Loss Statement(P&L) right: https://youtu.be/WLg85yiMgHI
https://medium.com/microsoft-power-bi/power-bi-formatted-p-l-with-custom-sub-totals-and-blank-rows-e...

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

I have already use the same way : 

VAR calcul_=SELECTEDVALUE('Cernol Template'[Totalling Type])
VAR value_=
    SWITCH(
        TRUE(),
        calcul_="Formula",
        CALCULATE(
                '_Acc Ledger'[Total Amount],
                '_Acc schedule'[L1 Sequence] IN {3,4,5,6,713} 
            ),
        '_Acc Ledger'[Total Amount],
    )
 
But here is the issue , in the Totalling column i have text format. I don't know how to convert this part  3,4,5,6,713 to a table without creating a new table to store all formula.

Hi @3mmanuel_12 
You can try this. It will convert that text into a virtual table inside a measure, with no extra tables.

 

My Total :=
VAR IsFormula = SELECTEDVALUE('Cernol Template'[Totalling Type]) = "Formula"
VAR FormulaText = SELECTEDVALUE('Cernol Template'[Totalling]) -- e.g. "3,4,5,6,7,13"

VAR FormulaTable =
ADDCOLUMNS(
TEXTSPLIT(FormulaText, ","), -- → {"3","4","5","6","7","13"}
"Seq", VALUE([Value]) -- convert to number
)

RETURN
IF(
IsFormula,
CALCULATE(
'_Acc Ledger'[Total Amount],
TREATAS(FormulaTable, '_Acc schedule'[L1 Sequence])
),
'_Acc Ledger'[Total Amount]
)

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Jaywant Thorat | MCT | Data Analytics Coach
Linkedin: https://www.linkedin.com/in/jaywantthorat/

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.