Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
tmumaw
Specialist II
Specialist II

Comparing Dates

Question for everyone.  I have a customer master table and a billing table.  I need to compare a date from the customer master with a date from the billing table.  Any ideas?

1 Solution

Accepted Solutions
Gysbert_Wassenaar

You can use an if statement to compare them: If( [CalendarDate] = [BillingTableDate], this , that )


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Gysbert_Wassenaar

You can use an if statement to compare them: If( [CalendarDate] = [BillingTableDate], this , that )


talk is cheap, supply exceeds demand
tmumaw
Specialist II
Specialist II
Author

The dates are on two different tables and I am trying to do this through my load script.

Gysbert_Wassenaar

Then you first have to join the two tables into one table.


talk is cheap, supply exceeds demand