LEVEL UP your DAX codes using VARIABLES // Beginners Guide to Power BI in 2021

preview_player
Показать описание
Get Demo Files here

In this video we go through how to use variables in Power BI, to improve the readability of your DAX codes.

-

🚩 Support us to get perks such as demo files, early access and more!

MY FAVOURITE POWER BI BOOKS

MY GEAR

GET IN TOUCH

🌍 WHO IS SOLUTIONS ABROAD
Hi, my name is Fernan, the one-man band of Solutions Abroad. I work as a Data Scientist based in London, UK and have over 6 years of experience working in Business Intelligence. Solutions Abroad these days is dedicated to teaching the ins and outs of Power BI, through the power of YouTube.

If you want to learn more, I’ve conveniently created playlists to help you find the right topic for you.

🐎 First, watch this video about how a typical Power BI workflow looks like

🗺 Learn DAX to extend your Power BI calculations

📆 Stay up-to-date on all the features Power BI releases monthly

🧪 Get certified as a Microsoft Data Analyst Associate

💡 Learn Power BI Features to improve your dashboards
📊 WHAT IS POWER BI?
Power BI is a business analytics tool by Microsoft. It creates a working environment suited for normal users, meaning tasks such as data extraction, cleansing, analysis and storytelling; these are made easily-accessible to citizen-users, and extendable for technical users. At face value it provides visually-stunning, interactive dashboards, but it’s built on top of so much more.

🔻 Get started with Power BI Desktop for FREE

#PowerBI #DataAnalytics #BusinessIntelligence
Рекомендации по теме
Комментарии
Автор

One of the best power bi YouTubers...Learning a lot from you, thanks 👍🏽

tllittle
Автор

Fantastic! I've been looking at (but not understanding) variables for about a year now, and in this 10-minute video, I suddenly get them, and their purpose. Thank you!

cstevens
Автор

Use these calculations regularly, but never realized these calculations can be rewritten through variables as well, you explained the concept very nicely!! This is just awesome!

sharnumuganoor
Автор

You are awesome. Your teaching is the best.

pravinshingadia
Автор

Hi Fernan can you please more videos on Variables. im facing difficulties and confusion in understanding these variable

kiran
Автор

Hi Fernan, thanks for your video. Question: Is it better to create variables then standalone measures (measures which won't be used anywhere else)? Looking in advance for your feedback. Thanks

almya
Автор

but why when we create total sales for Milk product. its not work?
I mean lik this:
Total Sales For Milk=
VAR _TotSale=SUMX(tbl Order, tbl Order[Quanty]*Tbl Order[Price])
RETURN
CALCULATE(_TotSale, Tbl Order[Product]="Milk")


the result its same with total sales without Milk


even i create measure like this:
Total Sales for Milk =
VAR _TotSale=SUMX(tbl Order, tbl Order[Quanty]*Tbl Order[Price])
Var _SaleMilk=FILTER(ALL(Tbl Order[Product]), Tbl Order[Product]="Milk")
RETURN
CALCULATE(_TotSale, _SaleMilk)

Can u help about this problem?

alibaroroh