Data Preparation in Power BI
Data Preparation in Power BI
Email: [email protected]
Mobile: +91 7829533577
Joins in SQL or Merge Queries in Power Query both will give same results.
Suppose we have 2 tables, Table1 contains 1000 records and Table 2 contains 100
records, but we need to prepare report for overall data (Table1+Table2), then will
JOIN the tables based on the TABLE data.
A JOIN clause is used to combine rows from two or more tables, based on a related
column between them.
(INNER) JOIN: Returns records that have matching values in both tables
LEFT (OUTER) JOIN: Returns all records from the left table, and the matched records
from the right table
RIGHT (OUTER) JOIN: Returns all records from the right table, and the matched
records from the left table
FULL (OUTER) JOIN: Returns all records when there is a match in either left or right
table
In the above table, employee monthly salary is there. I want to calculate Quarter or
Semester or Yearly salary by using custom INVOKES Function.
For that we need to write BLANK Query.
Step1:
Query:
Step2: