Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello everybody,
I need your help to create a new table with conditions. I know how to create a new table, but don't what is the formula to calculated what I want :
I have the first table, and I want the new one.
Thanks a lot for your help,
Joc
Solved! Go to Solution.
Hi @joc,
You can use below table formula to summary original table records:
Summary Table =
ADDCOLUMNS(
ADDCOLUMNS(
SUMMARIZE('Test Table',[Week],"Col 1",SUMX(FILTER('Test Table',[Week]=EARLIER('Test Table'[Week])&&OR('Test Table'[Name]="A",'Test Table'[Name]="B")),[Value])),
"Col 2",[Col 1]+[Col 1]/2),
"Col 3",[Col 1]-[Col 2])
Based on your result table, you 'col2' formula should be "A+B+(C+D)/2", right?
If this is a case, you can use below formula to instead:
Summary Table =
ADDCOLUMNS(
ADDCOLUMNS(
SUMMARIZE('Test Table',[Week],"Col 1",SUMX(FILTER('Test Table',[Week]=EARLIER('Test Table'[Week])&&OR('Test Table'[Name]="A",'Test Table'[Name]="B")),[Value])),
"Col 2",[Col 1]+(SUMX(FILTER('Test Table',[Week]=EARLIER('Test Table'[Week])),[Value])-[Col 1])/2),
"Col 3",[Col 1]-[Col 2])
Regards,
Xiaoxin Sheng
Hi @joc,
You can use below table formula to summary original table records:
Summary Table =
ADDCOLUMNS(
ADDCOLUMNS(
SUMMARIZE('Test Table',[Week],"Col 1",SUMX(FILTER('Test Table',[Week]=EARLIER('Test Table'[Week])&&OR('Test Table'[Name]="A",'Test Table'[Name]="B")),[Value])),
"Col 2",[Col 1]+[Col 1]/2),
"Col 3",[Col 1]-[Col 2])
Based on your result table, you 'col2' formula should be "A+B+(C+D)/2", right?
If this is a case, you can use below formula to instead:
Summary Table =
ADDCOLUMNS(
ADDCOLUMNS(
SUMMARIZE('Test Table',[Week],"Col 1",SUMX(FILTER('Test Table',[Week]=EARLIER('Test Table'[Week])&&OR('Test Table'[Name]="A",'Test Table'[Name]="B")),[Value])),
"Col 2",[Col 1]+(SUMX(FILTER('Test Table',[Week]=EARLIER('Test Table'[Week])),[Value])-[Col 1])/2),
"Col 3",[Col 1]-[Col 2])
Regards,
Xiaoxin Sheng
Perfect thanks a lot !
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 73 | |
| 50 | |
| 46 | |
| 44 |