Sum of the value from virtual column

Celes
New Member

hi,

Please help. I need to get the sum of the value from my virtual column but it returns the sum of all virtual column in my app : for example

ColumnName virtual column 1 i have 2, 3, 4 sum should be = 9

ColumnName virtual column 2 i have 4,5,6 sum should be = 15 but it returns 24 (because 9+15)

ColumnName virtual column 3 i have 7,8,9 sum should be = 24, but it returns the sum of all value from all the column which is 48.

this is my formula for sum column Sum([ColumnName ])

Any suggestion to improve my formula please

Solved Solved
0 10 1,077
1 ACCEPTED SOLUTION

SUM([VirtualColumnName][Hold Duration])

View solution in original post

10 REPLIES 10

@Celes
Try with this:

SUM(
    SELECT(
        Tablename[VirtualColumnName],
        [KeyColumnName] = [_THISROW].[KeyColumnName]
    )
)

SUM(
SELECT(
Tablename[VirtualColumnName] - is it the โ€œRELATED column nameโ€ or the specific column name which is the place holder of the number? ,
[KeyColumnName] = [_THISROW].[KeyColumnName]
)
)

@Celes
Are those virtual columns contain REF_ROWS() expression? I mean are they related records??

yes it contain REF_ROWS() expression

Which column you want to sum up from the child table? Whatโ€™s the column name?

Column name is Hold Duration

SUM([VirtualColumnName][Hold Duration])

thank you @LeventK, it works!

Iโ€™m hoping for your reply from my 1st inquiry. the complex expression Lookup expression

@Celes I will look into it when I have some time. A bit busy these days. Please share the gSheet of the app with edit access as well, so that I can check.

thanks @LeventK, shared already

Top Labels in this Space