Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam PL-300 All Questions

View all questions & answers for the PL-300 exam

Exam PL-300 topic 2 question 71 discussion

Actual exam question from Microsoft's PL-300
Question #: 71
Topic #: 2
[All PL-300 Questions]

HOTSPOT
-

You are creating a Power BI model in Power BI Desktop.

You need to create a calculated table named Numbers that will contain all the integers from -100 to 100.

How should you complete the DAX calculation? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
SanaCanada
Highly Voted 1 year, 7 months ago
Correct Answer To create a calculated table named Numbers in Power BI Desktop that contains all the integers from -100 to 100, you can use the following DAX calculation: Numbers = GENERATESERIES(-100, 100, 1) Explanation: The GENERATESERIES function generates a table of values that starts at the first argument (-100), ends at the second argument (100), and increments by the third argument (1) in this case. The resulting table will contain all the integers from -100 to 100 inclusive. The calculated table is named "Numbers" and is created by assigning the output of the GENERATESERIES function to it using the "=" operator. No confusion, and no need to discuss further
upvoted 45 times
...
AnnaBi
Highly Voted 1 year, 7 months ago
Correct! GENERATESERIES - (-100,100,1)
upvoted 7 times
...
jaume
Most Recent 6 days, 13 hours ago
GENERATESERIES is the only function in the list accepting 3 parameters. GENERATE (<Table1>, <Table2 Expression>] would crete a virtual table pairing rows of 2 tables where the second table depends on the current row of first table GENERATEALL(<table1>, <table2 expression>) similar to GENERATE but it will include rows even when first table is empty GENERATESERIES(<start>, <end>, [<step>] creates a single-column table of values within a numeric range
upvoted 1 times
...
rcaliandro
3 months, 1 week ago
The answer is correct!
upvoted 1 times
...
Dani_eL
9 months, 1 week ago
GenerateSeries uses 3 arguments, lower value, upper value, step (from -100 to 100 increment by 1) Generate(table1, table2) creates a new table with cartesian products (for each row in table 2 add all rows from table1) If table1 has 2 records and table 2 has 3 records, new table will have 2X3=6records BY RECORD ORDER OF TABLE 1 t1 t2 1 1 2 1 1 2 2 2 1 3 2 3 GenerateAll(table1, table2) creates a new table with cartesian products (for each row in table 1 add all rows from table2) If table1 has 2 records and table 2 has 3 records, new table will have 2X3=6records BY RECORD ORDER OF TABLE 2 t1 t2 1 1 1 2 1 3 2 1 2 2 2 3 Generate and GenerateAll use the same principle as multidimension arrays
upvoted 2 times
...
lukelin08
10 months, 2 weeks ago
Correct Answer given
upvoted 1 times
...
Igetmyrole
1 year, 2 months ago
Generateseries (-100,100,1) This formula generates a serious of numbers starting from -100, ending at 100, with an increment of 1.
upvoted 1 times
...
abbeyabh
1 year, 5 months ago
Correct Numbers = GENERATESERIES(-100, 100, 1) Start -100 End 100 Increment 1
upvoted 1 times
...
HoangNV
1 year, 7 months ago
Correct. GENERATESERIES(-100, 100, 1)
upvoted 4 times
...
RazaTheLegend
1 year, 7 months ago
GENERATESERIES function will generate a table of integers from the starting value (-100) to the ending value (100), with an increment of 1. This table will be returned as a new calculated table named "Numbers".
upvoted 5 times
...
Minio1
1 year, 7 months ago
Correct
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...