-
Notifications
You must be signed in to change notification settings - Fork 1
/
cambiar expresión o títulos de medidas en lote
38 lines (32 loc) · 1.5 KB
/
cambiar expresión o títulos de medidas en lote
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//Author: Matt Allington, sólo hice cambios minimos.
// Importante: Recuerden guardar un respaldo de su .pbix / .bim antes de utilizar Tabular Editor, no hay garantías.
// Con el siguiente script cambio sólo las medidas seleccionadas
var FromString = "( campo / 60 ) * 5";
var ToString = "campo";
foreach (var m in Selected.Measures)
{
//m.Name = m.Name.Replace(FromString,ToString);
m.Expression = m.Expression.Replace(FromString,ToString);
/* Cycle over all measures in model and replaces the
FromString with the ToString in the measure names*/
}
// Con el siguiente script cambio todas las medidas
var FromString = "CALCULATE(SUM(Sales[ExtendedAmount])";
var ToString = "CALCULATE([Total Sales]";
foreach (var m in Model.AllMeasures)
{
m.Expression = m.Expression.Replace(FromString,ToString);
/* Cycle over all measures in model and replaces the
FromString with the ToString */
}
// Con el siguiente script cambio los titulos de las medidas
var FromString = "Total Sales";
var ToString = "Total Revenue";
foreach (var m in Model.AllMeasures)
{
m.Name = m.Name.Replace(FromString,ToString);
/* Cycle over all measures in model and replaces the
FromString with the ToString in the measure names*/
}
//En cualquiera de los 2 scripts que cambian el cuerpo de la medida, si quieren formatearla con Dax Formatter sólo hay que agregar esta linea luego del replace:
m.Expression = FormatDax(m.Expression);