Total costs from a series of lists

I need to be able to have several lists list that allow individual items to be checked. These items will have associated costs. After the needed ones are checked, a total field will be activated and the total cost will be provided. Guidance? Thanks!

1 2 323
2 REPLIES 2

@Hank_Austin
You can try with this:

SUM(
	SELECT(
		Tablename[PriceColumn],
		IN(
			[CostItemsColumnName],
			[_THISROW].[EnumlistColumnName]
		)
	)
)

Thank you I will!

Top Labels in this Space