Forum Discussion
Issue with Day Of Week not calculating correctly
- 10 years ago
I am guessing that you have your "Date Requested Field" linked to your "Date/Time" field in your Date table and your Date table is the date with the time of 12:00:00 AM.
Generally, the way to fix this is that in your fact table with "Date Requested Field", create a new column like:
FORMAT([Date],"mm/dd/yyyy 12:00:00")
And then use that to relate the two tables. Basically, you need a key between the tables so that there is always a match in your Date table. Lots of different ways to go about it, but that's what is going wrong.
I am guessing that you have your "Date Requested Field" linked to your "Date/Time" field in your Date table and your Date table is the date with the time of 12:00:00 AM.
Generally, the way to fix this is that in your fact table with "Date Requested Field", create a new column like:
FORMAT([Date],"mm/dd/yyyy 12:00:00")
And then use that to relate the two tables. Basically, you need a key between the tables so that there is always a match in your Date table. Lots of different ways to go about it, but that's what is going wrong.
Thanks-That helped-I think I dont even need to use the date table based on the information you provided-Thanks again.