0% found this document useful (0 votes)
66 views9 pages

Power BI Advance Features PDF Notes File

The document outlines a session on advanced features of Power BI, led by Satish Dhawale. It covers creating a calendar table using DAX functions, adding images in Power BI, and advanced tooltip usage. Key formulas and resources for enhancing data visualization in Power BI are provided.

Uploaded by

sandeshpatil0341
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
66 views9 pages

Power BI Advance Features PDF Notes File

The document outlines a session on advanced features of Power BI, led by Satish Dhawale. It covers creating a calendar table using DAX functions, adding images in Power BI, and advanced tooltip usage. Key formulas and resources for enhancing data visualization in Power BI are provided.

Uploaded by

sandeshpatil0341
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

Welcome to the Session of

POWER BI ADVANCE FEATURES

BY SATISH DHAWALE
Are you ready to learn…
1 Creating calendar table in Power BI
Creating calendar table in Power BI

Formula
= CALENDAR(MIN(SalesData[Date]),MAX(SalesData[Date]))

The CALENDAR DAX function in Power BI is used to generate a continuous


range of dates between a specified start and end date. It's particularly
useful when building a date table, which is essential for time-based
calculations such as year-over-year analysis, month-to-date, quarter-to-
date, etc.
Date_Table =
ADDCOLUMNS(
CALENDARAUTO(),
"Year", YEAR([Date]),
"QuarterNo", QUARTER([Date]),
"Quarter", FORMAT( [Date] , "\QQ"),
Date Table "MonthNo", MONTH([Date]),
"Month", FORMAT( [Date] , "MMM"),
"WeekdayNo", WEEKDAY([Date]),
"Weekday", FORMAT([Date], "DDD"),
"Week", WEEKNUM([Date])
)
2

Adding Image in Power BI


Adding Images in Power BI
Download
.PBIX file with
Image visual
https://appsource.microsoft.com/en-
us/product/power-bi-
visuals/wa104381835?tab=overview
3 Advance use of Tool Tip

You might also like