{"id":16471,"date":"2026-09-19T07:30:15","date_gmt":"2026-09-19T07:30:15","guid":{"rendered":"https:\/\/www.examlabs.com\/certification\/?p=16471"},"modified":"2026-09-19T07:30:15","modified_gmt":"2026-09-19T07:30:15","slug":"servicenow-cis-itsm-practice-test-questions-and-exam-dumps-part16-q301-320","status":"publish","type":"post","link":"https:\/\/www.examlabs.com\/certification\/servicenow-cis-itsm-practice-test-questions-and-exam-dumps-part16-q301-320\/","title":{"rendered":"ServiceNow CIS-ITSM Practice Test Questions and Exam Dumps Part16 Q301-320"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p><b>View Full <\/b><a href=\"https:\/\/www.examlabs.com\/cis-itsm-exam-dumps\"><b>ServiceNow CIS-ITSM Exam Dumps<\/b><\/a><b> and Practice Test Dumps.<\/b><\/p>\n<p><b><br \/>\n<\/b><b>Q1. You are importing a customer table that contains one column with values such as &#8220;London, United Kingdom&#8221; and &#8220;Paris, France&#8221;. You need separate City and Country columns. Which Power Query transformation should you use?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> Group By<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Unpivot Columns<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Split Column by Delimiter<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Pivot Column<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 3. Split Column by Delimiter<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> Split Column by Delimiter is appropriate when a text field contains multiple attributes separated by a consistent character such as a comma. In this scenario, the transformation can separate City and Country into individual columns, which makes each field available independently for filtering, mapping, grouping, and modeling. Group By aggregates rows, Unpivot converts columns into attribute-value rows, and Pivot turns row values into columns. Separating combined attributes during data preparation generally produces a cleaner semantic model and improves the usability of geographic fields in Power BI reports.<\/span><\/p>\n<p><b>Q2. You need a DAX measure that calculates sales only for transactions where the DiscountAmount is greater than zero. Which approach is most appropriate?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> CALCULATE with a filter condition on DiscountAmount<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> CONCATENATE SalesAmount and DiscountAmount<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> FORMAT the DiscountAmount column<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Create a hierarchy containing DiscountAmount<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1. CALCULATE with a filter condition on DiscountAmount<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> CALCULATE evaluates an expression under a modified filter context. You can use it to calculate total sales while adding a condition such as Sales[DiscountAmount] &gt; 0. This allows the result to remain responsive to other report filters such as date, region, or product. CONCATENATE is a text function, FORMAT changes how a value is displayed, and a hierarchy organizes fields for drill-down. When a measure needs to evaluate an aggregation for a subset of rows based on a business condition, CALCULATE is a central DAX function for implementing that logic.<\/span><\/p>\n<p><b>Q3. A company stores monthly performance targets in one table and actual transaction data in another. The targets are defined only at Region and Month level. What should you do when modeling the target table?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> Relate it directly to individual transaction IDs.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Duplicate every target row for each sales transaction.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Convert the target amount to text.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Preserve its Region-Month grain and relate it through appropriate dimensions.<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 4. Preserve its Region-Month grain and relate it through appropriate dimensions.<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> A fact table should retain the level of detail at which its values are defined. If targets exist at Region and Month level, the model should not imply that they exist at transaction or product level. Appropriate Date and Region dimensions can filter both target and actual data while calculations respect the different grains. Duplicating target values across transactions could lead to overcounting, while text conversion does not solve modeling issues. Accurately documenting and preserving fact-table grain is essential for reliable calculations and meaningful comparisons between actual and target values.<\/span><\/p>\n<p><b>Q4. You want users to compare the distribution of sales values across several numeric ranges rather than viewing every individual sales value. Which feature is most useful?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> Drillthrough<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Binning<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Sensitivity labels<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Page navigation<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2. Binning<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> Binning groups continuous numeric values into intervals, making it easier to analyze distributions. Instead of displaying hundreds of individual SalesAmount values, Power BI can group them into ranges such as 0-999, 1,000-1,999, and so on. This is useful for histogram-like analysis and understanding concentration, spread, or outliers. Drillthrough provides detail-page navigation, sensitivity labels classify information, and page navigation moves users among report pages. Binning is specifically intended for converting continuous numeric values into meaningful analytical ranges.<\/span><\/p>\n<p><b>Q5. A report uses several measures that all require the same year-over-year comparison logic. You want to avoid creating a separate YoY measure for each base measure. Which modeling feature can help?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> Calculation groups<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Query dependencies<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Visual-level filters<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Data source privacy levels<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1. Calculation groups<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> Calculation groups allow reusable calculation logic to be applied across multiple measures. Instead of creating separate year-over-year, year-to-date, and previous-year versions of every base measure, a model author can define calculation items that modify the selected measure dynamically. This reduces duplicated DAX and helps ensure consistent logic across the semantic model. Query dependencies relate to Power Query structure, visual filters affect individual visuals, and privacy levels govern source combinations. Calculation groups are especially valuable in models with many measures and repeated time-intelligence patterns.<\/span><\/p>\n<p><b>Q6. You are troubleshooting a report where selecting a product unexpectedly filters a customer visual through several relationships. What should you inspect first?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> Report theme colors<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Page dimensions<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Relationship cross-filter directions and filter paths<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Mobile layout<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 3. Relationship cross-filter directions and filter paths<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> Unexpected filtering is often caused by relationship configuration, particularly bidirectional cross-filtering or multiple filter paths through the model. Inspecting relationship directions and how filters propagate between dimensions and fact tables can reveal why a product selection affects a customer visual. Report themes, page dimensions, and mobile layouts control presentation rather than semantic filtering. Clear star-schema relationships with deliberate filter directions make model behavior easier to understand. Bidirectional filtering should generally be used only when the business requirement justifies it and the potential for ambiguous propagation has been evaluated.<\/span><\/p>\n<p><b>Q7. You need to create a measure that returns the value selected from a single-value slicer containing currency codes such as USD, EUR, and GBP. Which DAX function is most appropriate?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> SUMX<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> DISTINCTCOUNT<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> PATH<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> SELECTEDVALUE<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 4. SELECTEDVALUE<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> SELECTEDVALUE returns the single value in the current filter context and can also return an alternate result when no value or multiple values are selected. This makes it ideal for slicer-driven logic involving currencies, scenarios, metrics, or thresholds. SUMX performs iterative summation, DISTINCTCOUNT counts unique values, and PATH supports parent-child hierarchy scenarios. A measure can retrieve the selected currency code using SELECTEDVALUE and then use SWITCH or other conditional logic to apply the appropriate conversion or calculation.<\/span><\/p>\n<p><b>Q8. You need to compare actual expenses and planned expenses by department in a compact tabular view that includes totals and subtotals. Which visual should you use?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> Scatter chart<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Matrix<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Gauge<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Funnel chart<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2. Matrix<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> A Matrix visual is designed for structured tabular analysis and supports rows, columns, hierarchies, subtotals, and grand totals. It is well suited to comparing Actual and Planned Expense measures across departments while preserving detailed and summarized views. Scatter charts show relationships between numeric variables, Gauges compare a metric to a target, and Funnel charts represent sequential processes. When users need exact values, multiple measures, and subtotal behavior in the same visual, a Matrix provides the strongest fit.<\/span><\/p>\n<p><b>Q9. You import a column containing values &#8220;TRUE&#8221;, &#8220;FALSE&#8221;, and blanks as text. You need to use it as a logical field in the model. What should you do?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> Convert the column to a decimal number.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Leave it as text permanently.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Clean the values and convert the column to True\/False.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Create a many-to-many relationship.<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 3. Clean the values and convert the column to True\/False.<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> When a source contains logical values stored as text, the data should be standardized and converted to the appropriate True\/False data type when the business meaning supports it. Blank values should also be handled according to the business rule, such as keeping them null or replacing them with a defined default. A decimal type is inappropriate for logical data, and leaving the values as text reduces semantic clarity. Relationships are unrelated to correcting the field&#8217;s data type. Proper data typing improves consistency and helps Power BI interpret fields correctly.<\/span><\/p>\n<p><b>Q10. A report must show the percentage of employees who completed training out of the total number of employees. Which DAX function is safest for the division?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> SUM<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> RELATED<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> CONCATENATE<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> DIVIDE<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 4. DIVIDE<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> DIVIDE is designed for division in DAX and handles zero or blank denominators safely. A completion-rate measure can divide the number of employees who completed training by the total employee count without risking division errors. DIVIDE can return BLANK() or an optional alternate value if the denominator is zero. SUM aggregates numeric values, RELATED retrieves values from a related table, and CONCATENATE combines text. Ratios and percentages are common Power BI calculations, and DIVIDE is generally preferred when the denominator may be zero or unavailable.<\/span><\/p>\n<p><b>Q11. A table contains many duplicate records because the same file was imported twice. You need to preserve only one copy of each completely identical row. What should you do in Power Query?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> Pivot the table.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Remove Duplicates across the relevant columns.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Create a calculated measure.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Add a report filter.<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2. Remove Duplicates across the relevant columns.<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> Remove Duplicates eliminates repeated records based on the selected columns. If duplicate rows resulted from importing the same data twice, selecting the columns that define row uniqueness and removing duplicates can restore the correct dataset. Pivoting changes the shape of data, while measures and report filters do not remove duplicate records from the semantic model. Duplicate removal should be used only after confirming that repeated rows are genuinely erroneous rather than valid repeated transactions. Data-quality corrections are generally best performed before the data is loaded.<\/span><\/p>\n<p><b>Q12. You need to create a DAX measure that returns total sales while preserving an existing Region filter and adding a filter for Product Category = &#8220;Premium&#8221;. Which function allows the added filter to intersect with existing filters instead of replacing them?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> KEEPFILTERS<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> FORMAT<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> CALENDAR<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> SUBSTITUTE<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1. KEEPFILTERS<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> KEEPFILTERS changes how a filter argument in CALCULATE interacts with the existing filter context. Instead of replacing an existing filter on the same column or table, it causes the new condition to intersect with the current filtering. This can be useful when a calculation should narrow an already filtered set rather than overwrite it. FORMAT changes presentation, CALENDAR creates date tables, and SUBSTITUTE modifies text. Understanding how filters are added, replaced, or preserved is important for building precise DAX measures in complex reports.<\/span><\/p>\n<p><b>Q13. A report contains many visuals, and users want to view only the data associated with a single chart in a larger workspace temporarily. Which capability should they use?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> Focus mode<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Incremental refresh<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Deployment pipelines<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Data source settings<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1. Focus mode<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> Focus mode enlarges a selected visual so users can analyze it with more screen space while remaining within the Power BI report experience. This is useful when a visual contains many categories or detailed labels that are difficult to examine at the original page size. Incremental refresh optimizes semantic model refresh, deployment pipelines support lifecycle management, and data source settings control connections and credentials. Focus mode improves report consumption without requiring the report designer to create a separate page for every detailed visual.<\/span><\/p>\n<p><b>Q14. You need a Power Query transformation that replaces all occurrences of &#8220;Unknown&#8221; in a Region column with null. Which operation should you use?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> Group By<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Replace Values<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Unpivot Columns<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Append Queries<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2. Replace Values<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> Replace Values is designed to substitute one value with another in a Power Query column. In this case, &#8220;Unknown&#8221; can be replaced with null so the data accurately represents the absence of a known region. Group By aggregates records, Unpivot transforms columns into rows, and Append combines rows from multiple tables. Standardizing placeholder text such as &#8220;Unknown&#8221;, &#8220;N\/A&#8221;, or &#8220;-&#8221; can improve data quality, but the chosen replacement should reflect the intended business meaning and downstream reporting requirements.<\/span><\/p>\n<p><b>Q15. You need to return the second-highest sales value from a table by first ranking or selecting a subset of rows. Which DAX table function could be part of the solution?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> TOPN<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> CONCATENATE<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> PATHLENGTH<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> DATE<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1. TOPN<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> TOPN returns a specified number of rows from a table based on an ordering expression. It can be used as part of a DAX pattern to retrieve the highest two sales rows, after which another function can identify the lower of those two values as the second-highest result. CONCATENATE is a text function, PATHLENGTH works with parent-child hierarchy paths, and DATE constructs a date value. TOPN is useful for calculations involving ranked subsets, such as top customers, second-highest values, or best-performing categories.<\/span><\/p>\n<p><b>Q16. A company wants a report distributed to many users, but those users should consume a curated experience rather than work directly inside the source workspace. Which feature should you use?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> Calculation group<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Power BI app<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Query parameter<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Custom column<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2. Power BI app<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> A Power BI app provides a curated distribution experience for reports, dashboards, and related content. Content creators continue working in the source workspace while consumers access the published app without requiring broad workspace permissions. This separates authoring from consumption and supports governance for larger audiences. Calculation groups are modeling features, query parameters make data preparation configurable, and custom columns add derived row-level data. Apps are specifically designed for packaging and distributing approved Power BI content to users.<\/span><\/p>\n<p><b>Q17. You are creating a model where one customer can belong to multiple account groups and each account group can contain multiple customers. Which structure can explicitly manage these assignments?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> A bridge table<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> A report tooltip<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> A visual hierarchy<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> A sensitivity label<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1. A bridge table<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> A bridge table can represent valid many-to-many associations by containing one row for each Customer-Account Group combination. It can then relate separately to the Customer and Account Group dimensions, making the relationship structure more explicit and easier to manage. Tooltips and visual hierarchies affect report interaction rather than model relationships, while sensitivity labels classify content. Bridge tables are commonly used in dimensional modeling when two entities legitimately have multiple associations and direct one-to-many relationships are insufficient.<\/span><\/p>\n<p><b>Q18. A report contains a chart with monthly values. You want users to see a moving average across the most recent three months rather than only raw monthly values. Which approach is appropriate?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> Create a three-month rolling measure or visual calculation.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Convert Month to Boolean.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Use a geographic hierarchy.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Apply row-level security.<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1. Create a three-month rolling measure or visual calculation.<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> A moving average evaluates a metric across a rolling window, such as the current month plus the previous two months. This can be implemented with DAX using date-filter logic or, where suitable, a visual calculation. Moving averages smooth short-term fluctuations and help users identify broader trends. Boolean conversion, geographic hierarchies, and row-level security are unrelated to rolling analytical calculations. A proper Date table and clear definition of the rolling window are important for producing consistent results.<\/span><\/p>\n<p><b>Q19. A business requires users to see the report title, visual titles, and screen-reader descriptions in an accessible report. Which design feature should you configure for visuals?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> Alt text<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Query folding<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Data source credentials<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Incremental refresh<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1. Alt text<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> Alt text provides a textual description of a visual that can be interpreted by screen readers, helping users with visual impairments understand the purpose or content of the visual. Accessible report design also includes logical tab order, sufficient contrast, readable fonts, and avoiding reliance on color alone. Query folding and incremental refresh relate to data processing, while source credentials control authentication. Adding meaningful alt text supports inclusive report consumption and is an important Power BI accessibility practice.<\/span><\/p>\n<p><b>Q20. A semantic model contains a Date table with every date for several years. You need to create a calculated column that returns the fiscal quarter based on a fiscal year starting in July. What is the most appropriate approach?<\/b><\/p>\n<ol>\n<li><b><\/b><span style=\"font-weight: 400;\"> Use a geographic data category.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Create a bookmark for each quarter.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Use conditional DAX or Power Query logic based on the month number.<\/span><\/li>\n<li><b><\/b><span style=\"font-weight: 400;\"> Enable bidirectional filtering.<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 3. Use conditional DAX or Power Query logic based on the month number.<\/b><\/p>\n<p><b>Explanation:<\/b><span style=\"font-weight: 400;\"> A fiscal calendar that starts in July does not align with standard calendar quarters, so custom logic is needed. The month number can be mapped to fiscal quarters\u2014for example, July through September as Fiscal Q1 and October through December as Fiscal Q2. This can be created in Power Query during data preparation or as a calculated column in the Date table. Geographic categories, bookmarks, and bidirectional filtering do not define fiscal periods. A well-designed Date dimension should contain the fiscal attributes required by business reporting.<\/span><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; View Full ServiceNow CIS-ITSM Exam Dumps and Practice Test Dumps. Q1. You are importing a customer table that contains one column with values such as &#8220;London, United Kingdom&#8221; and &#8220;Paris, France&#8221;. You need separate City and Country columns. Which Power Query transformation should you use? Group By Unpivot Columns Split Column by Delimiter Pivot [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[1648,1647],"tags":[],"_links":{"self":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts\/16471"}],"collection":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/comments?post=16471"}],"version-history":[{"count":1,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts\/16471\/revisions"}],"predecessor-version":[{"id":16484,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts\/16471\/revisions\/16484"}],"wp:attachment":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/media?parent=16471"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/categories?post=16471"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/tags?post=16471"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}