Forum Discussion
Anonymous
4 years agoNot applicable
Replacing blanks with value based on ID
Hey I'm trying to replace the blanks in the subtotal column with the subtotal amount that corresponds to the Order ID. I made a mock table of it here
My goal is this
Oh, I see now you used my column name as part of the code.
You need to remove my name or the original column name.
Anyway you can PM me and we'll do it together in zoom
6 Replies
- SpartaBI
Community Champion
Anonymous create this calculated column:
'Table'[Subtotal] = VAR _current_id = 'Table'[Order ID] VAR _result = SUMX( FILTER( 'Table', 'Table'[Order ID] = _current_id ), 'Table'[Price] ) RETURN _result- AnonymousNot applicable
This only returned "False"
- SpartaBI
Community Champion
Anonymous can you PM me to look together in a zoom?