Forum Discussion
InventoryMan
2 years agoFrequent Visitor
Advice on creating new summary table, based on filtering data from 2 other tables.
I have been trying to replicate a dashboard, previously created via MySQL. I am unable, or aware if what I am trying to replicate can be done. The dashboard is "grouped by" Locations[Region] The...
- Anonymous2 years ago
Hi InventoryMan ,
Here are the steps you can follow:
1. Create calculated table.
Table = var _column= SELECTCOLUMNS( FILTER(ALL(Assets), 'Assets'[InventoryDate]=DATE(1976,7,4)),"Column_ID",'Assets'[Location_id]) var _table1= SUMMARIZE( 'Locations','Locations'[Region], "Total Sites",COUNT('Locations'[id]), "Expected Assets",SUM('Locations'[SiteCount]), "Pending Sites",COUNTX(FILTER(ALL(Locations),'Locations'[id] in _column&&'Locations'[Status]<>"Complete"&&'Locations'[Region]=EARLIER('Locations'[Region])),[Region])) return _table12. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Anonymous
2 years agoNot applicable
Hi InventoryMan ,
Here are the steps you can follow:
1. Create calculated table.
Table =
var _column=
SELECTCOLUMNS(
FILTER(ALL(Assets),
'Assets'[InventoryDate]=DATE(1976,7,4)),"Column_ID",'Assets'[Location_id])
var _table1=
SUMMARIZE(
'Locations','Locations'[Region],
"Total Sites",COUNT('Locations'[id]),
"Expected Assets",SUM('Locations'[SiteCount]),
"Pending Sites",COUNTX(FILTER(ALL(Locations),'Locations'[id] in _column&&'Locations'[Status]<>"Complete"&&'Locations'[Region]=EARLIER('Locations'[Region])),[Region]))
return
_table1
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
InventoryMan
2 years agoFrequent Visitor
Thank you for your assistance on this! I have now been learning about the provided syntax.