Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello
we have a process to check between 2 data sources on monthly basis to track users, I have created a merged query where the first file is the main file and the second is emp data with all user data
I've used left join with main file as left
I'm getting data in both the columns even when emp data doesnot contain that record but main file consists it
present result
date main file emp data
jan'23 aaa aaa
feb'23 aaa aaa
mar'23 aaa aaa
expected result
date main file emp data
jan'23 aaa aaa
feb'23 aaa aaa
mar'23 aaa null
@kb177 also, if in the second table you have month, you must use both columns to do the merge. To receive only data of a specific employee for that specific month.
name in main file and name in emp data file