Forum Discussion
JamieMcConaghy
11 months agoNew Member
Combining two columns in a table/matrix visual
I have a table that shows two columns of values (Initial Cost and Access Cost): one caluclated by a SUMX measure, and one just summing straight from the source data. Each column is empty when the oth...
- 11 months ago
JamieMcConaghy , Which one?
New measure = ([Intial Cost])+Sum(Table [Access Cost])
amitchandak
Super User
11 months agoJamieMcConaghy , You need a new measure = [Intial Cost]+[Access Cost] , if both are measure
if they are columns
New measure = sum(Table [Intial Cost])+Sum(Table [Access Cost])
JamieMcConaghy
11 months agoNew Member
One is a measure and one is a column, so I don't see how to combine them.
- amitchandak11 months ago
Super User
JamieMcConaghy , Which one?
New measure = ([Intial Cost])+Sum(Table [Access Cost])- JamieMcConaghy11 months agoNew Member
Ah okay, that all looks good now. Thanks.