PL-300 Exam Discussions & Posts
Revilo
Commented on June 19, 2025
Q60 correct answer:
1. Import data into Power BI Desktop
2. Create Role Def
3. Publish Report
4. Assign users to role
You add users to roles inside the Power BI service so Publishing comes before assigning users to the roles.
GERMANY
Revilo
Commented on June 18, 2025
Q34 should be Odata Feed, not Odata Queries. It asks which connector. There is no Odata Queries connector in Power BI.
UNITED KINGDOM
Revilo
Commented on June 18, 2025
Q15 should be remove the Content column, not combine.
UNITED KINGDOM
Akhigbe A.A.
Commented on June 17, 2025
I think question 15 steps should be
1. From Power BI Desktop, select Get Data, and then select Folder.
2. From Power Query Editor, remove the Content column.
3. From Power Query Editor, expand the Attributes column
Anonymous
AnonyBR
Commented on June 15, 2025
Q167:
1 - adding more fields to Explain by
2 - answer 3 = 0.3/0.1
Anonymous
anonyBR
Commented on June 15, 2025
q139
Sales Qualification =
IF (
'Opportunity'[Qualification] < 0.5,
"Low",
IF (
'Opportunity'[Qualification] > 0.7,
"High",
"Medium"
)
)
Anonymous
anonyBR
Commented on June 15, 2025
q136
| Operação | Join Type |
| --------------------------- | -------------- |
| Join Customers with Address | **Left outer** |
| Join Address with Country | **Inner** |
Anonymous
Cris
Commented on June 15, 2025
Q-154: I would say SUM - FILTER
ROMANIA
anonyBR
Commented on June 15, 2025
Q103
Percent of Product Sales =
VAR ProductSales = SUM ( 'Sales'[Sales] )
VAR AllSales =
CALCULATE (
SUM ( 'Sales'[Sales] ),
ALLSELECTED ( 'Products'[Product] )
)
RETURN
DIVIDE ( ProductSales, AllSales )
Anonymous
anonyBR
Commented on June 15, 2025
q93:
Transaction Size =
VAR SalesTotal = 'Sales'[Sales Amount]
VAR FilterSegment =
FILTER (
'Transaction Size',
'Transaction Size'[Min] <= SalesTotal &&
'Transaction Size'[Max] >= SalesTotal
)
VAR Result =
CALCULATE (
DISTINCT ( 'Transaction Size'[Transaction Size] ),
FilterSegment
)
RETURN Result
Anonymous
Anony
Commented on June 15, 2025
Q91:
Yes
Sales by Delivery Date :=
CALCULATE (
SUM ( Sales[Amount] ),
USERELATIONSHIP ( Sales[DeliveryDate], 'Date'[Date] )
)
Anonymous
Anony
Commented on June 14, 2025
q83:
Use First Row as Headers
Select Department and Product and Unpivot Other Columns
Rename the Attribute column to Year and the Value column to Revenue
Anonymous
Anony
Commented on June 14, 2025
Q78:
Sales PYTD =
VAR startyear =
STARTOFYEAR ( PREVIOUSYEAR ( 'calendar'[Date] ) )
VAR enddate =
LASTDATE ( Sales[Date] ) - 365
RETURN
CALCULATE (
SUM ( Sales[Sales] ),
DATESBETWEEN ( 'calendar'[Date], startyear, enddate )
)
Anonymous
Cris
Commented on June 14, 2025
Q-139 : the answer must be IF -HIGH - MEDIUM
ROMANIA
Munique
Commented on June 13, 2025
Q-78 correct answer is CALCULATE - SUM - DATESBETWEEN, because the variables startyear, and enddate already set the period from the previous year.
Anonymous
Cris
Commented on June 11, 2025
Question 78:
CALCULATE - SUM - DATESBETWEEN
please correct the answer
ROMANIA
Lebasi8
Commented on June 09, 2025
I found interesting questions related to topics I haven't working experience. Thank you
SPAIN
Chayan Ray
Commented on June 02, 2025
The questions are quite relevant and helpful so far.
Anonymous
Teboho
Commented on May 29, 2025
These questions are very helpful thank you
SOUTH AFRICA
ActiveLeaner
Commented on May 27, 2025
You have a CSV file that contains user complaints. The file contains a column named Logged. Logged contains the date and time each complaint occurred. The data in Logged is in the following format: 2018-12-31 at 08:59.
You need to be able to analyze the complaints by the logged date and use a built-in date hierarchy.
What should you do?
Options not correct.. Split / Extract the first part and then change data type as Date. Change the data type to Date is very important.
AUSTRALIA
ActiveLeaner
Commented on May 27, 2025
To get data from Sharepoint folder,enter site URL and SELECT Combine &Load. Question Number 8 . Please correct the answer
AUSTRALIA
Sifon
Commented on May 26, 2025
Question 34 (PL300) is Azure DevOps (Board Only), not Odata Queries
Option B
Anonymous
JOHN EBERECHUKWU MUONEKE
Commented on May 24, 2025
This is question is tactical and factual
Anonymous
ActiveLeaner
Commented on May 23, 2025
Q27. Logged contains the date and time each complaint occurred. The data in Logged is in the following format: 2018-12-31 at 08:59. The correct answer is Change the datatype to Date. The text column will directly parsed to Date... By directly splitting with "at" cannot do anything with Hierarchy
AUSTRALIA
Malek Ghanem
Commented on May 13, 2025
q 93 has wrong answer because calculate function should be followed by expression not table and we have to use filter function instead of calculate
Anonymous
Opeseitan Olawumi
Commented on May 13, 2025
Well explained answers, I hope it's useful in the exam
Anonymous
Malek Ghanem
Commented on May 12, 2025
Q 83 has wrong answer
SAUDI ARABIA
Deepak Kumar
Commented on May 12, 2025
Q78: Box 3 must be DatesBetween as it is taking 3 arguments
Anonymous
Deepak
Commented on May 12, 2025
Q88: box 3 must be Datesbetween coz it is taking 3 arguments
Anonymous
Kouassi
Commented on April 15, 2025
Good dump to prepare Microsoft PL-300 exam
UNITED STATES
Ned
Commented on March 18, 2025
This PL-300 exam dumps PDF is good but free version is limited I believe. The full version I purchased has double the amount of questions. Good enough to help me pass this exam.
Netherlands
sap
Commented on March 16, 2025
Q-115: To change the default summarization behaviour of a column, from Table view, select the column and change the summarization option. Changing DAX is not required.
EUROPEAN UNION
kvs
Commented on March 09, 2025
Q-115, Answer is Two Explicit measures (as there are two fields here 1. sales amount and 2. product cost) and Summarization setting (Additional visual can be average product cost which can be achieved by selecting summarization settings )
Anonymous
kvs
Commented on March 08, 2025
q-103 Answer is Summarize and not add columns
Anonymous