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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Applicable88
Impactful Individual
Impactful Individual

how to correctly add columns from a table visual?

Hello,

I want to do a calculated table, because I have problems with circular dependencies.

Sample table:

The shipping table: 

OrderNo. Date  Status  Sales Position
1111 10/01/2022  1000 333
1112 10/01/2022  1000 111
1113 10/01/2022  1000 777
1119 10/01/2022  1500 666
1118 10/01/2022  1500 999
1000 10/01/2022  3000 222

 

The preparation table:

OrderNo. Date  Status  Sales Position
1111 09/01/2022 P 1000 333
1112 09/01/2022 P 1000 111
1113 09/01/2022 P 1000 777
1114 09/01/2022 P 8000 123
1115 09/01/2022 P 10000 321
1116 09/01/2022 P 1500 543

 

Calculated Tables = 
Var _CurrentDate = 
Max ( ShippingTable[Date] )

Var _LatestPreparationDate = 
Calculate ( 
    Max ( PreparationTable[Date] ),
    PreparationTable[Date] < _CurrentDate 
)

Var _Orders_S =
Calculatetable (
    Values ( ShippingTable[OrderNo] ) , 
    ShippingTable[Status] = "S",
    PreparationTable[Date] = _LatestPreparationDate
)

Var _Orders_P =
Calculatetable (
    Values ( PreparationTable[OrderNo] ) , 
    PreparationTable[Status] = "P"
)

Return
Calculate ( 
    Count ( ShippingTable[OrderNo] ),
    Except (
        _Orders_S,
        _Orders_P
    )
)

 The top part is correct, but instead using a measure like the last part:

Calculate ( Count ( ShippingTable[OrderNo] ), Except ( _Orders_S, _Orders_P )

 

How to use the part "Except ( _Orders_S, _Orders_P )", but also having the right sum of  sales and sum of position in the same table for every shipping date?

 

When I doing this:

Caluclatetable ( 

Except ( _Orders_S, _Orders_P ))

 

The return of the table only consist of the OrderNo., but not the rest of the table. 

My table that should be returned should have the the sales, position and shipping date that were filtered through the except function like :

 

Sales PositionShippingDate

 

I tried with addcolumns as well, but I guess the lineage is broken, so it won't filter right sales and positions. Not even with context transition


I hope someone has a solution here.

Thank you very much in advanced.

Best. 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Applicable88 ,

 

Check the formula.

Calculated Table =
Var _CurrentDate =
Max ( ShippingTable[Date] )
Var _LatestPreparationDate =
Calculate (
Max ( PreparationTable[Date] ),
PreparationTable[Date] < _CurrentDate
)
Var _Orders_S =
Calculatetable (
Values ( ShippingTable[OrderNo] ) ,
ShippingTable[Status] = "S",
PreparationTable[Date] = _LatestPreparationDate
)
Var _Orders_P =
Calculatetable (
Values ( PreparationTable[OrderNo] ) ,
PreparationTable[Status] = "P"
)
var _except = FILTER(ShippingTable, ShippingTable[OrderNo] in EXCEPT(_Orders_S,_Orders_P))
return
SUMMARIZE(_except,[Date],"sale",SUM(ShippingTable[Sales]),"position",SUM(ShippingTable[Position]),"_count",DISTINCTCOUNT(ShippingTable[OrderNo]))
1.PNG
 
Best Regards,
Jay

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @Applicable88 ,

 

Check the formula.

Calculated Table =
Var _CurrentDate =
Max ( ShippingTable[Date] )
Var _LatestPreparationDate =
Calculate (
Max ( PreparationTable[Date] ),
PreparationTable[Date] < _CurrentDate
)
Var _Orders_S =
Calculatetable (
Values ( ShippingTable[OrderNo] ) ,
ShippingTable[Status] = "S",
PreparationTable[Date] = _LatestPreparationDate
)
Var _Orders_P =
Calculatetable (
Values ( PreparationTable[OrderNo] ) ,
PreparationTable[Status] = "P"
)
var _except = FILTER(ShippingTable, ShippingTable[OrderNo] in EXCEPT(_Orders_S,_Orders_P))
return
SUMMARIZE(_except,[Date],"sale",SUM(ShippingTable[Sales]),"position",SUM(ShippingTable[Position]),"_count",DISTINCTCOUNT(ShippingTable[OrderNo]))
1.PNG
 
Best Regards,
Jay

@Anonymous thank you very much!

I didn't know it was possible to use the "IN" operator refering to single columns like this:

 

 var _except = FILTER(ShippingTable, ShippingTable[OrderNo] in EXCEPT(_Orders_S,_Orders_P))

I only used it as specific string lookups in columns so far.

 

Thank you very much.

Best. 

 

 

amitchandak
Super User
Super User

@Applicable88 , A measure like

Calculate ( Countrows (except( ShippingTable[OrderNo] , OrderTable[OrderNo] ) ) )

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

@amitchandak , sorry, but thats not going to add the columns that I need. 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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