Forum Discussion
Create Quarter Column to my table without Date
I have a table that is for Sales Target for each branch, the total of each branch is distributed into 4 quarters. Each quarter has a different percentage that adds up to 100%. so this is how my table looks like
| BranchID | Sales Target | Quarter |
| 1 | 10,000$ | Q1 |
| 1 | 20,000$ | Q2 |
| 1 | 15,000$ | Q3 |
| 1 | 10,000$ | Q4 |
| 2 | 20,000$ | Q1 |
and so on.
I have BranchTable that identifies the BranchID and Sales table and Date Table that are connected in relationships.
When I connect Target Table to BranchTable the data is shown perfectly, however when I connect quarter to my Date table it shows data as blank. No errors just blank.
How do I connect my Target Table so I can connect it to Date table that is also connected to Sales Table?
2 Replies
- Halah_MSFrequent Visitor
I tried to relate it to Date[Quarter] but it gives me many to many relationship warning, and when I relate it to Date[Date] the results are blank.
I added year column thinking it might make more sense but it still gives many to many relationship.
How to fix this?