What is going on my dashboard...!

it should be like this… for the Speedrun: Your First End-to-End Workflow, Transforming the Data, Union datasets..

However, my problem is this…below. I put everything what the lecture said previously… What am I missing and Here is the question. Do I have to add order_due_time, order_due_date for each thing?

If you guys can help me, I would like to be happier.

It looks like there’s a schema mismatch between your two inputs to the union. One has a column called “order_due_time” and one has a column called “order_due_date”

You can either change one of the datasets to match the other, or you can switch the join to be a narrow or wide union if you want to discard both or keep both columns.

Let me know if that helps