Forum Discussion
vsorensen
1 year agoFrequent Visitor
Using measure to compare two columns in a matrix
As the title suggests, I have two columns in a matrix that I need to compare. Both are date columns and I am trying to display the difference between the two. The issue I'm having, is when I try to d...
- 1 year ago
vsorensen Try:
Start Variance = SWITCH( TRUE(), [Start] = BLANK(), BLANK(), [Start] = [BL Start], 0, NETWORKDAYS([Start], [BL Start]) )
Greg_Deckler
Community Champion
1 year agovsorensen Try:
Start Variance =
SWITCH( TRUE(),
[Start] = BLANK(), BLANK(),
[Start] = [BL Start], 0,
NETWORKDAYS([Start], [BL Start])
)