Forum Discussion
Anonymous
7 years agoNot applicable
Remove blanks from a column
I am trying to calculate portfolio cash weight. The portfolio always has a percentage which is not invested and therefore doesn't sum to 100%. I have a measure which calculates this cash weight (Cash...
- 7 years ago
CashWt = IF([TotalWt] = BLANK() , BLANK() , 100 - [TotalWt])
tex628
7 years agoCommunity Champion
CashWt = IF([TotalWt] = BLANK() , BLANK() , 100 - [TotalWt])
Anonymous
7 years agoNot applicable
Thanks, works perfectly!