Skip to content

Instantly share code, notes, and snippets.

@KNP-BI
Created November 27, 2024 03:42
Show Gist options
  • Save KNP-BI/39c949362f3d6b0c4cafdd3d4849b45c to your computer and use it in GitHub Desktop.
Save KNP-BI/39c949362f3d6b0c4cafdd3d4849b45c to your computer and use it in GitHub Desktop.
// 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