I try to create a slice where DatumBegin is tomorrow

Hi all,

Alltough the expression seems to be OK, but I get a false when I test it.

[DatumBegin] = (TODAY() + 1)

I try to create a slice where DatumBegin is tomorrow. I have DatumBegin as a DateTime.

thx,
Robert

Solved Solved
0 2 81
1 ACCEPTED SOLUTION

TODAY() is NOT a DateTime, it is a Date. You have to compare like to like.

DATE( [DatumBegin] ) = TODAY() + 1

View solution in original post

2 REPLIES 2

TODAY() is NOT a DateTime, it is a Date. You have to compare like to like.

DATE( [DatumBegin] ) = TODAY() + 1

Thx Marc, I undertstand now, and it works!

Thx

Top Labels in this Space