Power BI & Tableau Resources
🆓 Resources to learn Power BI, Tableau & Data Visualisation Perfect channel to start learning everything about Data Analytics Admin: @coderfun
Ko'proq ko'rsatish📈 Telegram kanali Power BI & Tableau Resources analitikasi
Power BI & Tableau Resources (@powerbi_analyst) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 55 757 obunachidan iborat bo'lib, Taʼlim toifasida 3 075-o'rinni va Hindiston mintaqasida 6 326-o'rinni egallagan.
📊 Auditoriya ko‘rsatkichlari va dinamika
невідомо sanasidan buyon loyiha tez o‘sib, 55 757 obunachiga ega bo‘ldi.
28 Iyul, 2026 dagi oxirgi ma’lumotlarga ko‘ra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 318 ga, so‘nggi 24 soatda esa 36 ga o‘zgardi va umumiy qamrov yuqori darajada qolmoqda.
- Tasdiqlash holati: Tasdiqlanmagan
- Jalb etish (ER): Auditoriya o‘rtacha 2.39% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 1.08% ini tashkil etuvchi reaksiyalarni to‘playdi.
- Post qamrovi: Har bir post o‘rtacha 1 335 marta ko‘riladi; birinchi sutkada odatda 604 ta ko‘rish yig‘iladi.
- Reaksiyalar va o‘zaro ta’sir: Auditoriya faol: har bir postga o‘rtacha 4 ta reaksiya keladi.
- Tematik yo‘nalishlar: Kontent dax, visual, dashboard, chart, slicer kabi asosiy mavzularga jamlangan.
📝 Tavsif va kontent siyosati
Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida ta’riflaydi:
“🆓 Resources to learn Power BI, Tableau & Data Visualisation
Perfect channel to start learning everything about Data Analytics
Admin: @coderfun”
Yuqori yangilanish chastotasi (oxirgi ma’lumot 29 Iyul, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli bo‘lib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Taʼlim toifasidagi muhim ta’sir nuqtasiga aylantirishini ko‘rsatadi.
Total Sales = SUM(Sales[Sales Amount])
Use Measures for: KPIs, Charts, Cards, Tables, Dashboards
Measures do not store values in the model, making them more efficient.
2️⃣ Calculated Columns
Calculated Columns create a new column in a table.
Example:
Profit = Sales[Sales Amount] - Sales[Cost]
Use them when you need a value for every row.
Unlike Measures, Calculated Columns increase the model size because values are stored.
3️⃣ Calculated Tables
Create entirely new tables using DAX.
Example:
TopCustomers = FILTER(Customers, Customers[Sales] > 100000)
Useful for advanced reporting scenarios.
📌 Most Common DAX Functions
SUM()
Adds all values in a column.
Total Sales = SUM(Sales[Sales Amount])
AVERAGE()
Returns the average value.
Average Sales = AVERAGE(Sales[Sales Amount])
COUNT()
Counts numeric values.
Total Orders = COUNT(Sales[Order ID])
DISTINCTCOUNT()
Counts unique values.
Example: Number of unique customers.
IF()
Performs logical tests.
Profit Status = IF([Profit] > 0, "Profit", "Loss")
CALCULATE()
One of the most powerful DAX functions.
It changes the filter context before performing a calculation.
North Sales =
CALCULATE(
[Total Sales],
Sales[Region] = "North"
)
FILTER()
Returns rows that meet a condition. Often used inside CALCULATE().
RELATED()
Fetches values from a related table. Useful when working with relationships.
DIVIDE()
Safely performs division and avoids divide-by-zero errors.
Profit Margin = DIVIDE([Profit], [Sales])Dim Date
|
|
Dim Customer — Fact Sales — Dim Product
|
|
Dim Region
Benefits:
✅ Better performance
✅ Easier DAX
✅ Cleaner reports
✅ Easier maintenance
❄️ Snowflake Schema
A normalized model where dimensions are connected to other dimensions.
Example:
Fact Sales
|
Product
|
Category
|
Department
Drawbacks:
• More relationships
• More complex model
• Slightly slower queries
For most Power BI projects, Star Schema is preferred.
📌 Relationships
Relationships connect tables using common columns.
Example: Customer ID → Sales Table ↔ Customer Table
This allows Power BI to combine data correctly.
📌 Types of Relationships
1️⃣ One-to-Many (1:_):
Most common relationship.
Example: One Customer → Many Orders
✅ Recommended for most models.
2️⃣ One-to-One (1:1):
One record matches one record.
Less common.
**3️⃣ Many-to-Many (_:*):**
Multiple records match multiple records.
Use only when necessary, as it can complicate calculations.
📌 Cardinality
Cardinality defines how tables relate.
Examples: One-to-One, One-to-Many, Many-to-One, Many-to-Many
Choosing the correct cardinality is important for accurate results.
📌 Cross Filter Direction
Determines how filters move between tables.
Single Direction:
✅ Recommended
Simple and efficient.
Both Directions:
Allows filters to flow both ways.
Use only when required, as it can affect performance and create ambiguity.
📌 Active vs Inactive Relationships
Active Relationship:
Used automatically by Power BI.
Represented by a solid line.
Inactive Relationship:
Exists in the model but isn't used unless activated with the USERELATIONSHIP() DAX function.
Represented by a dashed line.
📌 Date Table
Every professional Power BI model should include a dedicated Date table.
Why?
Time Intelligence functions like YTD, MTD, QTD, Same Period Last Year depend on a proper Date table.
📌 Best Practices
✅ Use Star Schema
✅ Keep Fact and Dimension tables separate
✅ Create one Date table
✅ Use meaningful table and column names
✅ Avoid unnecessary Many-to-Many relationships
✅ Use Single-direction filtering whenever possible