Task QnA
Task QnA
7. Cross Filter Direction: Cross Filter Direction determines how filters are
propagated between related tables in a data model:
o Bar charts
o Line charts o Pie charts o Tables
o Matrix o Maps o Cards o KPIs o Scatter plots o
Slicers
17. Challenges Faced in Projects: Challenges might include:
21. Use of Slicer Visual: This question was answered earlier in point
18.
DAX
Copy code
PreviousMonthOrders =
CALCULATE(
SUM(Orders[OrderAmount]),
PREVIOUSMONTH(Orders[OrderDate])
DAX
Copy code
PreviousMonthReturns =
CALCULATE(
SUM(Returns[ReturnAmount]),
PREVIOUSMONTH(Returns[ReturnDate])
DAX
Copy code
PreviousMonthRevenue =
CALCULATE(
SUM(Sales[Revenue]), PREVIOUSMONTH(Sales[SaleDate])
You said:
1. Explain without using duplicate table functionality how to create duplicate
table in power Query Editor? 2. What are the frequent transformation you did
in your project? 3. Explain Inserted and Extracted column in power bi? 4.
What is Preview Options in power Bi? 5. What are the layers in power bi
system? 6. What Is Cardinality? and How many types of cardinality? 7. What
is Cross Filter Direction? 8. What is Active and Inactive
Relationship? 9. hat are bookmarks in Power BI, and how do you use them?
10. Explain the difference between a Report and a Dashboard in Power BI?
11. What is Tooltip and Custom Tooltip feature in power bi? 12. Explain the
concept of drill-down and drill-through in Power
BI? 13. What is the use of Conditional Formatting in Power bi? 14. How many
types of Filters in power bi? 15. How many ways in power bi to filter your
report? 16. How many types of visuals you used in your Project? 17. What
Type of Challenges you faced in your project?
18. What is the use of Slizer Visual in power BI? 19. How many types of
visuals you used in your Project? 20. What Type of Challenges you faced in
your project? 21. What is the use of Slizer Visual in power BI? 22. What is
Dax and What type of Dax Functions have you used in your project? 23.
Which DAX Functions Are Most Commonly Used in your Projects? 24. Create
New Measure for Previous Months order? 26. Create New Measure for
Previous Months Return? 27. Create New Measure for Previous Months
Revenue? 28. Difference between the COUNT and COUNTA functions? 29.
Difference between the SUM and SUMX functions? 30. Difference between a
Calculated Column and a Measure? 31. What is SDLC? 32. What is Agile
Methodology? 33. What is Power Bi? 34. What is Business Intelligence? 35.
Difference Between Descriptive Analysis & Predictive Analysis?
ChatGPT said:
ChatGPT
DAX
Copy code
PreviousMonthOrders =
CALCULATE(
SUM(Orders[OrderAmount]),
PREVIOUSMONTH(Orders[OrderDate])
DAX
Copy code
PreviousMonthReturns =
CALCULATE(
SUM(Returns[ReturnAmount]),
PREVIOUSMONTH(Returns[ReturnDate])
)
DAX
Copy code
PreviousMonthRevenue =
CALCULATE(
SUM(Sales[Revenue]),
PREVIOUSMONTH(Sales[SaleDate])
You said:
31. What is SDLC? 32. What is Agile Methodology? 33. What is Power Bi?
34. What is Business Intelligence? 35. Difference Between Descriptive
Analysis & Predictive Analysis?
ChatGPT said:
ChatGPT
Sure, let's go through each of these concepts:
• Descriptive Analysis:
o Focuses on summarizing historical data to understand what has
happened. o Uses techniques like data aggregation, reporting,
and visualization. o Examples include monthly sales reports, trend
analysis, and historical performance summaries.
• Predictive Analysis:
o Focuses on forecasting future outcomes based on historical data
and statistical models. o Uses techniques like regression
analysis, machine learning algorithms, and statistical modeling. o
Examples include sales forecasts, customer churn prediction,
and risk assessments.
• Left Join: Returns all rows from the left table and the matched
rows from the right table. If no match, NULLs are returned for
the right table’s columns.
• Usage: When you want all records from the left table and only
the matching records from the right table.
• Example:
• SELECT employees.name, departments.dept_name FROM
employees LEFT JOIN departments ON employees.dept_id =
departments.dept_id;
• Right Join: Returns all rows from the right table and the
matched rows from the left table. If no match, NULLs are
returned for the left table’s columns.
• Usage: When you want all records from the right table and only
the matching records from the left table.
• Example:
• SELECT employees.name, departments.dept_name FROM
employees
RIGHT JOIN departments ON employees.dept_id =
departments.dept_id;