TDA-C01 Exam QuestionsBrowse all questions from this exam

TDA-C01 Exam - Question 40


You have the following dataset that contains null values in the Profits field.

You want the data to appear as shown in the following table.

Which two formulas achieve the goal? (Choose two.)

Show Answer
Correct Answer: CD

To ensure that null values in the 'Profits' field are replaced with 0, you can use two functions: IFNULL([Profits], 0) and ZN([Profits]). The IFNULL function checks if the 'Profits' field is null; if it is, it assigns a value of 0. The ZN function does the same by replacing null values with 0. These functions will ensure that the dataset will display 0 for any null values in the 'Profits' column, as shown in the second table.

Discussion

2 comments
Sign in to comment
84db7a1Options: CD
Dec 12, 2023

C and D are correct

MonBoujOptions: CD
May 29, 2024

C. IFNULL([Profits],0) D. ZN([Profits])