Тёмный

18. Create a Power BI Report IV (Challenge 5) 

T.O@PowerAppTutorials
Подписаться 206
Просмотров 943
50% 1

We continue the series on the creation of our first Power BI Report - Part 4
This video continues from where we stop with the creation of our MYMeasures Table, which will hold all the measures we will use in our Power BI Report.
Link: learn.microsof...
Power up Challenge 2024 Walkthrough Series.
1. My Animal Shelter Solution Full Demo - • 1. My Animal Shelter S...
2. Intro - • 2. Animal Shelter Solu...
3. Create and Import Shelter Table in the Dataverse Part 1 (Challenge I) - Remastered - • 3. Create and Import S...
4. Create and Import Foster Family Table in the Dataverse Part 2 (Challenge I) - Remastered - • 4. Create and Import F...
5. Create and Import Animal Table in the Dataverse Part 3 (Challenge I) - Remastered - • 5. Create and Import A...
6. Create a Model Driven App I (Challenge 2) - • 6. Create a Model Driv...
7. Add SVG Icons and Logo (Optional Challenge 2) - • 7. Add SVG Icons and L...
8. Create a Canvas App I (Challenge 3) - • 8. Create a Canvas App...
9. Create a Canvas App II (Challenge 3) - • 9. Create a Canvas App...
10. Create a Power Automate Flow (Challenge 4) - • 10. Create a Power Aut...
11. Create a Business Process Flow for My Model Driven App - • 11. Create a Business ...
12. Create a Custom Page for My Model Driven App I - • 12. Create a Custom Pa...
13. Create a Custom Page for My Model Driven App II - • 13. Create a Custom Pa...
14. Create a Custom Page for My Model Driven App III - • 14. Create a Custom Pa...
15. Create a Power BI Report I (Challenge 5) - • 15. Create a Power BI ...
16. Create a Power BI Report II (Challenge 5) - • 16. Create a Power BI ...
17. Create a Power BI Report III (Challenge 5) - • 17. Create a Power BI ...
18. Create a Power BI Report IV (Challenge 5) - (You are here)
19. Create a Power BI Report V (Challenge 5) - • 19. Create a Power BI ...
20. My Animal Shelter Solution Full Demo (PRO Version) - • 20. My Animal Shelter ...
New Videos updates Pro - Version
************************************************
21. Create a Workflow in Power App - Medical Passed - isMedicalPassed - • 21. Create a Workflow ...
II. JScript Web Resources (Three Use Cases- hideReturnedSectionDynamically, setFollowUpSixMonthsDOAdoption, and setDateIfEmpty)
III. Customizing app Commands (Copy single & Multiple Records)
IV. Adopt an Animal Approval Process Cloud Flow
V. Embed a Canvas App on a Model-driven Form using the Modern designer (Not Custom Pages)
************************************************
All Codes: docs.google.co...
Codes:
Total Animals Rescued = COUNTROWS('Animal Info')
Total Animals Fostered =
// Calculate the result with a specific filter context
CALCULATE(
// Count the rows in the 'Animal Info' table
COUNTROWS('Animal Info'),
// Apply a filter to include only rows where 'Animal Date of Foster' is not blank
NOT(ISBLANK('Animal Info'[Animal Date of Foster]))
)
Total Animals Rescued Last Year =
// Calculate the result with a specific filter context
CALCULATE(
// Use the existing measure for total animals rescued
[Total Animals Rescued],
// Apply a time intelligence function to shift the date context to the same period last year
SAMEPERIODLASTYEAR('dimDate'[Date])
)
Total Animals Fostered Last Year =
// Calculate the result with a specific filter context
CALCULATE(
// Use the existing measure for total animals fostered
[Total Animals Fostered],
// Apply a time intelligence function to shift the date context to the same period last year
SAMEPERIODLASTYEAR('dimDate'[Date])
)
........
Most Rescued Animal =
VAR MaxCountAnimalType =
MAXX(
// Step 1: Filter and summarize the 'Animal Info' table to include only rows where 'Date of Arrival' is not blank
FILTER(
SUMMARIZE(
FILTER('Animal Info', NOT(ISBLANK('Animal Info'[Animal Date of Arrival]))), // Filter to non-blank 'Date of Arrival'
'Animal Info'[Animal Type], // Group by 'Animal Type'
"Count", COUNTROWS('Animal Info') // Calculate the count of rows for each 'Animal Type'
),
[Count] = MAXX( // Step 2: Filter by the maximum count of rescues
SUMMARIZE(
FILTER('Animal Info', NOT(ISBLANK('Animal Info'[Animal Date of Arrival]))), // Re-filter for non-blank 'Date of Arrival'
'Animal Info'[Animal Type],
"Count", COUNTROWS('Animal Info')
),
[Count] // Compare counts within the summarized table
)
),
[Animal Type] // Return the 'Animal Type' with the maximum count
)

Опубликовано:

 

14 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 22   
@Syedzaidi343
@Syedzaidi343 Месяц назад
I've watched all your videos, and I must say, the way you’ve explained and demonstrated the entire Power Apps development process is truly remarkable. The content is well-structured, organized, and easy to follow, making it a pleasure to learn from. Your efforts in simplifying complex topics and delivering them so effectively are highly appreciated. Thank you for all the hard work you’ve put into creating such valuable resources!
@TOPowerAppTutorials
@TOPowerAppTutorials Месяц назад
Thank you so much for the kind words! I’m thrilled to hear that you found the content valuable and easy to follow. It’s always my goal to make learning Power Apps and related technologies as accessible as possible. Your support means a lot, and I’m excited to keep delivering more helpful resources. If you ever have any specific questions or topics you’d like to see, feel free to share! 😊
@Syedzaidi343
@Syedzaidi343 Месяц назад
@@TOPowerAppTutorials quick question for you: what about if we submit the demonstration video before the due date?
@TOPowerAppTutorials
@TOPowerAppTutorials Месяц назад
@@Syedzaidi343 Totally allowed!
@CynthiaAkiotu
@CynthiaAkiotu 21 день назад
Thank you so much, This must have taken lot of efforts in creating this, your videos encouraged me not to give up because I almost did! I watched and followed all your videos from start to finish. I have done all, but I am still stuck with my business process flow, the email connectors is giving me a hard time and for the custom page model driven app III, for the patch Dax Formula my Foster Claimer Name is not showing
@TOPowerAppTutorials
@TOPowerAppTutorials 21 день назад
Look at the comments in the Create a Power Automate Flow!
@Syedzaidi343
@Syedzaidi343 Месяц назад
Very well organized tutorials, awesome work! Very nice!
@TOPowerAppTutorials
@TOPowerAppTutorials Месяц назад
Thanks a lot, glad you're enjoying the content!
@shrikrupa2727
@shrikrupa2727 Месяц назад
Hi, your tutorial is very well curated with step by step explanations.I’m trying to get “Total number of animals fostered last month “ but hitting “Blank” in the visuals although I have foster record for last month I have tried with “PREVIOUSMONTH” keyword on my measure & tried to declare variable & return & still the visual is blank Could you please add some inputs to be added in measure. Your help would be greatly appreciated. Thanks
@TOPowerAppTutorials
@TOPowerAppTutorials Месяц назад
Thanks! If you are getting 'Blank' it means your code is working correctly. Not sure what you mean by "although I have foster record for last month". Reach out via email with more details and screen shots!
@PAULSHOWTO3
@PAULSHOWTO3 26 дней назад
I have a problem with the measures, In the matrix, I have 39 total animal rescued that in a blank row, no shelter name please help
@TOPowerAppTutorials
@TOPowerAppTutorials 26 дней назад
Did you fix it? If not reach out via email with a screenshot!
@oyizaemmanuel2753
@oyizaemmanuel2753 11 дней назад
@PAULSHOWT03 were you able to get the Shelter name to show in your matrix? Please, how did you do it?
@PAULSHOWTO3
@PAULSHOWTO3 11 дней назад
@@oyizaemmanuel2753 yes, you must not import the columns what uses drop down
@frankieflower5031
@frankieflower5031 3 месяца назад
Hello there! Another great video! @18.58min "change YOY Animal Rescued", i get a "False" pop up, instead of your "3" number...
@TOPowerAppTutorials
@TOPowerAppTutorials 3 месяца назад
Reach out via email with a screenshot Frankie!
@frankieflower5031
@frankieflower5031 3 месяца назад
solved! it will autosolve in video 20. Create a Power BI Report V (Challenge 5) thanks anyway
@TOPowerAppTutorials
@TOPowerAppTutorials 3 месяца назад
@@frankieflower5031 Great!
@saifsalahdesignz7043
@saifsalahdesignz7043 3 месяца назад
Animal Days Shelter To Foster, There is no code.
@TOPowerAppTutorials
@TOPowerAppTutorials 3 месяца назад
Not enough Length space on RU-vid! I'm working on posting all the codes used throughout the course in a google doc and then share all!
@vaishalijadhav3378
@vaishalijadhav3378 3 месяца назад
I was looking for same
@TOPowerAppTutorials
@TOPowerAppTutorials 3 месяца назад
@@vaishalijadhav3378 Check the link to All Codes!
Далее
19. Create a Power BI Report V (Challenge 5)
55:50
Просмотров 1 тыс.
Тренеруем память physics drop 103 - 104
00:51
Create a custom KPI Card in a Power BI report
6:45
Просмотров 247 тыс.
Creating custom visuals in Power BI with DAX
35:04
Просмотров 22 тыс.
Основы работы в Microsoft Power BI
31:43
Просмотров 169 тыс.
KPI Visual Ideas in Power BI
13:37
Просмотров 214 тыс.