Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everybody,
I have the following issue, which If I solve I will improve the time efficiency of my app with 30-40%.
Now, I am using a CrossTable() function to seperate the metrics and their corresponding values.
For each metric where there is no value it also creates a row, which makes the size of the final table a problem.
I currently use the following code to remove the Null values, but it makes the transformation time inefficient, because it loads the 0 values and then after that filter them out in the next step.
How can I do both of these steps, creating and filtering the CrossTable into one step. In essence, I want to load everything into CrossTable() but without the 0 values at once. Please check the attached file for the provided function.
For your convenience, I will add the code here in the chat as well:
I will highly appreciate your ideas and solutions. If you need any further details, please feel free to reach me out. Thank you in advance.
Thank you both @marcus_sommer @KalmerKaljuste-BeTerna and for the useful thoughts and propositions for resolving this issue. After I transformed the ZERO values into Null values, the CrossTable() function automatically skipped the rows, thus improving the performance of my app by the expected 30-40%. Thank you again for your expertise and fast replies. The solution works flawlessly.