Created
November 27, 2024 03:42
-
-
Save KNP-BI/39c949362f3d6b0c4cafdd3d4849b45c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Define the target table and display folder | |
string targetDisplayFolder = "base\\counts"; | |
// Move selected measures to the target table and display folder | |
foreach (var measure in Selected.Measures) | |
{ | |
measure.DisplayFolder = targetDisplayFolder; | |
} | |
// Notify the user | |
Info("Moved " + Selected.Measures.Count + "' and display folder '" + targetDisplayFolder + "'."); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment