├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── Collection Archived └── Macros │ ├── Backup_Restore │ ├── Backup database.csx │ ├── Backup database.json │ ├── Restore database.csx │ └── Restore database.json │ ├── Cancel processing.csx │ ├── Cancel processing.json │ ├── Launch │ ├── Perspective Editor.csx │ └── Perspective Editor.json │ ├── Remove │ ├── Sort by column.csx │ └── Sort by column.json │ └── Toggle │ ├── Disallow applying default formatting annotation.csx │ └── Disallow applying default formatting annotation.json ├── Collection └── Macros │ ├── Apply │ ├── Best Practice Rules │ │ ├── Add VertiPaq annotations from VPAX file.csx │ │ ├── Add VertiPaq annotations from VPAX file.json │ │ ├── Add VertiPaq annotations.csx │ │ ├── Add VertiPaq annotations.json │ │ ├── Add long length column annotations.csx │ │ ├── Add long length column annotations.json │ │ ├── Add split datetime annotations.csx │ │ ├── Add split datetime annotations.json │ │ ├── Download best practice rules.csx │ │ └── Download best practice rules.json │ ├── Best practice rules.csx │ ├── Best practice rules.json │ ├── Blank lineage tags.csx │ ├── Blank lineage tags.json │ ├── DAX as description.csx │ ├── DAX as description.json │ ├── Default Power BI format strings.csx │ ├── Default Power BI format strings.json │ ├── Default column data types and formats.csx │ ├── Default column data types and formats.json │ ├── Default sort by columns.csx │ ├── Default sort by columns.json │ ├── Discourage implicit measures.csx │ ├── Discourage implicit measures.json │ ├── Encoding hints.csx │ ├── Encoding hints.json │ ├── Hide from-side relationship columns.csx │ ├── Hide from-side relationship columns.json │ ├── Independent value filter behavior.csx │ ├── Independent value filter behavior.json │ ├── Latest Power BI Compatibility Level.csx │ └── Latest Power BI Compatibility Level.json │ ├── Create │ ├── 'Avg of' measure(s).csx │ ├── 'Avg of' measure(s).json │ ├── 'Count of' measure(s).csx │ ├── 'Count of' measure(s).json │ ├── 'Max of' measure(s).csx │ ├── 'Max of' measure(s).json │ ├── 'Min of' measure(s).csx │ ├── 'Min of' measure(s).json │ ├── 'Sum of' measure(s).csx │ ├── 'Sum of' measure(s).json │ ├── Calculation group measures.csx │ ├── Calculation group measures.json │ ├── Field parameter.csx │ ├── Field parameter.json │ ├── Parent-child hierarchy.csx │ └── Parent-child hierarchy.json │ ├── DataType │ ├── Decimal.csx │ ├── Decimal.json │ ├── Double.csx │ ├── Double.json │ ├── Int64.csx │ └── Int64.json │ ├── Format all DAX.csx │ ├── Format all DAX.json │ ├── Format │ ├── $ English (New Zealand).csx │ ├── $ English (New Zealand).json │ ├── $ English (United States).csx │ ├── $ English (United States).json │ ├── Custom display units.csx │ ├── Custom display units.json │ ├── Custom_ #,0.00;(#,0.00);0.00.csx │ ├── Custom_ #,0.00;(#,0.00);0.00.json │ ├── Custom_ #,0;(#,0);0.csx │ ├── Custom_ #,0;(#,0);0.json │ ├── Decimal number.csx │ ├── Decimal number.json │ ├── Default.csx │ ├── Default.json │ ├── Long Date.csx │ ├── Long Date.json │ ├── Long Time.csx │ ├── Long Time.json │ ├── Percentage.csx │ ├── Percentage.json │ ├── Short Date.csx │ ├── Short Date.json │ ├── Short Time.csx │ ├── Short Time.json │ ├── Whole number.csx │ ├── Whole number.json │ ├── d_m_yyyy.csx │ └── d_m_yyyy.json │ ├── Launch │ ├── ALM Toolkit.csx │ ├── ALM Toolkit.json │ ├── Analyze In Excel.csx │ ├── Analyze In Excel.json │ ├── DAX Studio.csx │ └── DAX Studio.json │ ├── My Defaults.csx │ ├── My Defaults.json │ ├── Preview columns and measures.csx │ ├── Preview columns and measures.json │ ├── Remove │ ├── Annotations and ExtendedProperties.csx │ ├── Annotations and ExtendedProperties.json │ ├── Format strings.csx │ ├── Format strings.json │ ├── Name underscores.csx │ └── Name underscores.json │ ├── Scratchpad.csx │ ├── Scratchpad.json │ └── Toggle │ ├── ParameterMetadata property.csx │ └── ParameterMetadata property.json ├── LICENSE ├── Management ├── Assemblies │ ├── System.Drawing.Common.dll │ ├── System.Windows.Forms.Primitives.dll │ ├── System.Windows.Forms.dll │ ├── TOMWrapper14.dll │ ├── TabularEditor.exe │ └── newtonsoft.json.dll ├── Breaks EULA (Testing Only) │ ├── Macros Export from TE3 (TE3 Assemblies).csx │ ├── Macros Import into TE3 (TE3 Assemblies).csx │ └── TabularEditor3.Shared.dll ├── Common Library.csx ├── Macros Export from TE.csx ├── Macros Import into TE.csx ├── Settings Backup.csx ├── Settings Restore.csx ├── TE2 Script Compiler Update.csx ├── TOM-Extract-CompatibilityRequirementsAttributes.csx ├── TOM-Extract-CompatibilityRequirementsAttributes.md └── Update Assemblies.csx ├── README.md ├── Resources ├── GetVersion.csx ├── InputBox.csx ├── SelectObject.csx └── SelectString.csx └── omnisharp.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Collection Archived/Macros/Backup_Restore/Backup database.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection Archived/Macros/Backup_Restore/Backup database.csx -------------------------------------------------------------------------------- /Collection Archived/Macros/Backup_Restore/Backup database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection Archived/Macros/Backup_Restore/Backup database.json -------------------------------------------------------------------------------- /Collection Archived/Macros/Backup_Restore/Restore database.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection Archived/Macros/Backup_Restore/Restore database.csx -------------------------------------------------------------------------------- /Collection Archived/Macros/Backup_Restore/Restore database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection Archived/Macros/Backup_Restore/Restore database.json -------------------------------------------------------------------------------- /Collection Archived/Macros/Cancel processing.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection Archived/Macros/Cancel processing.csx -------------------------------------------------------------------------------- /Collection Archived/Macros/Cancel processing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection Archived/Macros/Cancel processing.json -------------------------------------------------------------------------------- /Collection Archived/Macros/Launch/Perspective Editor.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection Archived/Macros/Launch/Perspective Editor.csx -------------------------------------------------------------------------------- /Collection Archived/Macros/Launch/Perspective Editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection Archived/Macros/Launch/Perspective Editor.json -------------------------------------------------------------------------------- /Collection Archived/Macros/Remove/Sort by column.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection Archived/Macros/Remove/Sort by column.csx -------------------------------------------------------------------------------- /Collection Archived/Macros/Remove/Sort by column.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection Archived/Macros/Remove/Sort by column.json -------------------------------------------------------------------------------- /Collection Archived/Macros/Toggle/Disallow applying default formatting annotation.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection Archived/Macros/Toggle/Disallow applying default formatting annotation.csx -------------------------------------------------------------------------------- /Collection Archived/Macros/Toggle/Disallow applying default formatting annotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection Archived/Macros/Toggle/Disallow applying default formatting annotation.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Best Practice Rules/Add VertiPaq annotations from VPAX file.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Best Practice Rules/Add VertiPaq annotations from VPAX file.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Best Practice Rules/Add VertiPaq annotations from VPAX file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Best Practice Rules/Add VertiPaq annotations from VPAX file.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Best Practice Rules/Add VertiPaq annotations.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Best Practice Rules/Add VertiPaq annotations.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Best Practice Rules/Add VertiPaq annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Best Practice Rules/Add VertiPaq annotations.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Best Practice Rules/Add long length column annotations.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Best Practice Rules/Add long length column annotations.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Best Practice Rules/Add long length column annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Best Practice Rules/Add long length column annotations.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Best Practice Rules/Add split datetime annotations.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Best Practice Rules/Add split datetime annotations.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Best Practice Rules/Add split datetime annotations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Best Practice Rules/Add split datetime annotations.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Best Practice Rules/Download best practice rules.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Best Practice Rules/Download best practice rules.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Best Practice Rules/Download best practice rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Best Practice Rules/Download best practice rules.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Best practice rules.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Best practice rules.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Best practice rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Best practice rules.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Blank lineage tags.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Blank lineage tags.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Blank lineage tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Blank lineage tags.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/DAX as description.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/DAX as description.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/DAX as description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/DAX as description.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Default Power BI format strings.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Default Power BI format strings.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Default Power BI format strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Default Power BI format strings.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Default column data types and formats.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Default column data types and formats.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Default column data types and formats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Default column data types and formats.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Default sort by columns.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Default sort by columns.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Default sort by columns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Default sort by columns.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Discourage implicit measures.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Discourage implicit measures.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Discourage implicit measures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Discourage implicit measures.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Encoding hints.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Encoding hints.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Encoding hints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Encoding hints.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Hide from-side relationship columns.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Hide from-side relationship columns.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Hide from-side relationship columns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Hide from-side relationship columns.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Independent value filter behavior.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Independent value filter behavior.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Independent value filter behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Independent value filter behavior.json -------------------------------------------------------------------------------- /Collection/Macros/Apply/Latest Power BI Compatibility Level.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Latest Power BI Compatibility Level.csx -------------------------------------------------------------------------------- /Collection/Macros/Apply/Latest Power BI Compatibility Level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Apply/Latest Power BI Compatibility Level.json -------------------------------------------------------------------------------- /Collection/Macros/Create/'Avg of' measure(s).csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/'Avg of' measure(s).csx -------------------------------------------------------------------------------- /Collection/Macros/Create/'Avg of' measure(s).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/'Avg of' measure(s).json -------------------------------------------------------------------------------- /Collection/Macros/Create/'Count of' measure(s).csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/'Count of' measure(s).csx -------------------------------------------------------------------------------- /Collection/Macros/Create/'Count of' measure(s).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/'Count of' measure(s).json -------------------------------------------------------------------------------- /Collection/Macros/Create/'Max of' measure(s).csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/'Max of' measure(s).csx -------------------------------------------------------------------------------- /Collection/Macros/Create/'Max of' measure(s).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/'Max of' measure(s).json -------------------------------------------------------------------------------- /Collection/Macros/Create/'Min of' measure(s).csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/'Min of' measure(s).csx -------------------------------------------------------------------------------- /Collection/Macros/Create/'Min of' measure(s).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/'Min of' measure(s).json -------------------------------------------------------------------------------- /Collection/Macros/Create/'Sum of' measure(s).csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/'Sum of' measure(s).csx -------------------------------------------------------------------------------- /Collection/Macros/Create/'Sum of' measure(s).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/'Sum of' measure(s).json -------------------------------------------------------------------------------- /Collection/Macros/Create/Calculation group measures.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/Calculation group measures.csx -------------------------------------------------------------------------------- /Collection/Macros/Create/Calculation group measures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/Calculation group measures.json -------------------------------------------------------------------------------- /Collection/Macros/Create/Field parameter.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/Field parameter.csx -------------------------------------------------------------------------------- /Collection/Macros/Create/Field parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/Field parameter.json -------------------------------------------------------------------------------- /Collection/Macros/Create/Parent-child hierarchy.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/Parent-child hierarchy.csx -------------------------------------------------------------------------------- /Collection/Macros/Create/Parent-child hierarchy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Create/Parent-child hierarchy.json -------------------------------------------------------------------------------- /Collection/Macros/DataType/Decimal.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/DataType/Decimal.csx -------------------------------------------------------------------------------- /Collection/Macros/DataType/Decimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/DataType/Decimal.json -------------------------------------------------------------------------------- /Collection/Macros/DataType/Double.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/DataType/Double.csx -------------------------------------------------------------------------------- /Collection/Macros/DataType/Double.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/DataType/Double.json -------------------------------------------------------------------------------- /Collection/Macros/DataType/Int64.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/DataType/Int64.csx -------------------------------------------------------------------------------- /Collection/Macros/DataType/Int64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/DataType/Int64.json -------------------------------------------------------------------------------- /Collection/Macros/Format all DAX.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format all DAX.csx -------------------------------------------------------------------------------- /Collection/Macros/Format all DAX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format all DAX.json -------------------------------------------------------------------------------- /Collection/Macros/Format/$ English (New Zealand).csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/$ English (New Zealand).csx -------------------------------------------------------------------------------- /Collection/Macros/Format/$ English (New Zealand).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/$ English (New Zealand).json -------------------------------------------------------------------------------- /Collection/Macros/Format/$ English (United States).csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/$ English (United States).csx -------------------------------------------------------------------------------- /Collection/Macros/Format/$ English (United States).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/$ English (United States).json -------------------------------------------------------------------------------- /Collection/Macros/Format/Custom display units.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Custom display units.csx -------------------------------------------------------------------------------- /Collection/Macros/Format/Custom display units.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Custom display units.json -------------------------------------------------------------------------------- /Collection/Macros/Format/Custom_ #,0.00;(#,0.00);0.00.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Custom_ #,0.00;(#,0.00);0.00.csx -------------------------------------------------------------------------------- /Collection/Macros/Format/Custom_ #,0.00;(#,0.00);0.00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Custom_ #,0.00;(#,0.00);0.00.json -------------------------------------------------------------------------------- /Collection/Macros/Format/Custom_ #,0;(#,0);0.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Custom_ #,0;(#,0);0.csx -------------------------------------------------------------------------------- /Collection/Macros/Format/Custom_ #,0;(#,0);0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Custom_ #,0;(#,0);0.json -------------------------------------------------------------------------------- /Collection/Macros/Format/Decimal number.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Decimal number.csx -------------------------------------------------------------------------------- /Collection/Macros/Format/Decimal number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Decimal number.json -------------------------------------------------------------------------------- /Collection/Macros/Format/Default.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Default.csx -------------------------------------------------------------------------------- /Collection/Macros/Format/Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Default.json -------------------------------------------------------------------------------- /Collection/Macros/Format/Long Date.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Long Date.csx -------------------------------------------------------------------------------- /Collection/Macros/Format/Long Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Long Date.json -------------------------------------------------------------------------------- /Collection/Macros/Format/Long Time.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Long Time.csx -------------------------------------------------------------------------------- /Collection/Macros/Format/Long Time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Long Time.json -------------------------------------------------------------------------------- /Collection/Macros/Format/Percentage.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Percentage.csx -------------------------------------------------------------------------------- /Collection/Macros/Format/Percentage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Percentage.json -------------------------------------------------------------------------------- /Collection/Macros/Format/Short Date.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Short Date.csx -------------------------------------------------------------------------------- /Collection/Macros/Format/Short Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Short Date.json -------------------------------------------------------------------------------- /Collection/Macros/Format/Short Time.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Short Time.csx -------------------------------------------------------------------------------- /Collection/Macros/Format/Short Time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Short Time.json -------------------------------------------------------------------------------- /Collection/Macros/Format/Whole number.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Whole number.csx -------------------------------------------------------------------------------- /Collection/Macros/Format/Whole number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/Whole number.json -------------------------------------------------------------------------------- /Collection/Macros/Format/d_m_yyyy.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/d_m_yyyy.csx -------------------------------------------------------------------------------- /Collection/Macros/Format/d_m_yyyy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Format/d_m_yyyy.json -------------------------------------------------------------------------------- /Collection/Macros/Launch/ALM Toolkit.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Launch/ALM Toolkit.csx -------------------------------------------------------------------------------- /Collection/Macros/Launch/ALM Toolkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Launch/ALM Toolkit.json -------------------------------------------------------------------------------- /Collection/Macros/Launch/Analyze In Excel.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Launch/Analyze In Excel.csx -------------------------------------------------------------------------------- /Collection/Macros/Launch/Analyze In Excel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Launch/Analyze In Excel.json -------------------------------------------------------------------------------- /Collection/Macros/Launch/DAX Studio.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Launch/DAX Studio.csx -------------------------------------------------------------------------------- /Collection/Macros/Launch/DAX Studio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Launch/DAX Studio.json -------------------------------------------------------------------------------- /Collection/Macros/My Defaults.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/My Defaults.csx -------------------------------------------------------------------------------- /Collection/Macros/My Defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/My Defaults.json -------------------------------------------------------------------------------- /Collection/Macros/Preview columns and measures.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Preview columns and measures.csx -------------------------------------------------------------------------------- /Collection/Macros/Preview columns and measures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Preview columns and measures.json -------------------------------------------------------------------------------- /Collection/Macros/Remove/Annotations and ExtendedProperties.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Remove/Annotations and ExtendedProperties.csx -------------------------------------------------------------------------------- /Collection/Macros/Remove/Annotations and ExtendedProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Remove/Annotations and ExtendedProperties.json -------------------------------------------------------------------------------- /Collection/Macros/Remove/Format strings.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Remove/Format strings.csx -------------------------------------------------------------------------------- /Collection/Macros/Remove/Format strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Remove/Format strings.json -------------------------------------------------------------------------------- /Collection/Macros/Remove/Name underscores.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Remove/Name underscores.csx -------------------------------------------------------------------------------- /Collection/Macros/Remove/Name underscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Remove/Name underscores.json -------------------------------------------------------------------------------- /Collection/Macros/Scratchpad.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Scratchpad.csx -------------------------------------------------------------------------------- /Collection/Macros/Scratchpad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Scratchpad.json -------------------------------------------------------------------------------- /Collection/Macros/Toggle/ParameterMetadata property.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Toggle/ParameterMetadata property.csx -------------------------------------------------------------------------------- /Collection/Macros/Toggle/ParameterMetadata property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Collection/Macros/Toggle/ParameterMetadata property.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/LICENSE -------------------------------------------------------------------------------- /Management/Assemblies/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Assemblies/System.Drawing.Common.dll -------------------------------------------------------------------------------- /Management/Assemblies/System.Windows.Forms.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Assemblies/System.Windows.Forms.Primitives.dll -------------------------------------------------------------------------------- /Management/Assemblies/System.Windows.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Assemblies/System.Windows.Forms.dll -------------------------------------------------------------------------------- /Management/Assemblies/TOMWrapper14.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Assemblies/TOMWrapper14.dll -------------------------------------------------------------------------------- /Management/Assemblies/TabularEditor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Assemblies/TabularEditor.exe -------------------------------------------------------------------------------- /Management/Assemblies/newtonsoft.json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Assemblies/newtonsoft.json.dll -------------------------------------------------------------------------------- /Management/Breaks EULA (Testing Only)/Macros Export from TE3 (TE3 Assemblies).csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Breaks EULA (Testing Only)/Macros Export from TE3 (TE3 Assemblies).csx -------------------------------------------------------------------------------- /Management/Breaks EULA (Testing Only)/Macros Import into TE3 (TE3 Assemblies).csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Breaks EULA (Testing Only)/Macros Import into TE3 (TE3 Assemblies).csx -------------------------------------------------------------------------------- /Management/Breaks EULA (Testing Only)/TabularEditor3.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Breaks EULA (Testing Only)/TabularEditor3.Shared.dll -------------------------------------------------------------------------------- /Management/Common Library.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Common Library.csx -------------------------------------------------------------------------------- /Management/Macros Export from TE.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Macros Export from TE.csx -------------------------------------------------------------------------------- /Management/Macros Import into TE.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Macros Import into TE.csx -------------------------------------------------------------------------------- /Management/Settings Backup.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Settings Backup.csx -------------------------------------------------------------------------------- /Management/Settings Restore.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Settings Restore.csx -------------------------------------------------------------------------------- /Management/TE2 Script Compiler Update.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/TE2 Script Compiler Update.csx -------------------------------------------------------------------------------- /Management/TOM-Extract-CompatibilityRequirementsAttributes.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/TOM-Extract-CompatibilityRequirementsAttributes.csx -------------------------------------------------------------------------------- /Management/TOM-Extract-CompatibilityRequirementsAttributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/TOM-Extract-CompatibilityRequirementsAttributes.md -------------------------------------------------------------------------------- /Management/Update Assemblies.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Management/Update Assemblies.csx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/README.md -------------------------------------------------------------------------------- /Resources/GetVersion.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Resources/GetVersion.csx -------------------------------------------------------------------------------- /Resources/InputBox.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Resources/InputBox.csx -------------------------------------------------------------------------------- /Resources/SelectObject.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Resources/SelectObject.csx -------------------------------------------------------------------------------- /Resources/SelectString.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/Resources/SelectString.csx -------------------------------------------------------------------------------- /omnisharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samaguire/TabularEditorScripts/HEAD/omnisharp.json --------------------------------------------------------------------------------