Hi @Patgat
If you looking for difference between the two dates in days then use the formatDateTime expression
Add a compose for the Date In value and use the expression
formatDateTime('DateIn', 'yyyyMMdd')
Declare another compose for the same for Date Out
Finally add another compose to subtract the compose output of Date Out - Date In
This will give you the number of days.
Basically convert both dates in yyyyMMdd format and subtract the values.
Thanks