cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to disable EPM Dynamic Formatting Via Macro Automatically

slnkpsl
Explorer
0 Likes
644

Hi Everyone,

Is there a way to disable EPM Dynamic formatting via excel macro? (not just only for one sheet , for whole workbook) I have attached the screenshot below.

untitled.png

Accepted Solutions (1)

Accepted Solutions (1)

former_member186338
Active Contributor

In VBA iterate all worksheets in workbook and for each set:

For each sh in ThisWorkbook.Worksheets

epm.SetSheetOption sh, 109, False

Next

"109" - Apply Dynamic Formatting

gunesbt
Active Contributor
0 Likes

Hi Vadim,

Is there a way to do this per report in the same sheet where the corresponding report does not inherit sheet options. Consider edit report then consider "inherit sheet options" is not clicked.How do I apply the same method to such a report?

former_member186338
Active Contributor
0 Likes

Please close the question accepting the correct answer.

Answers (1)

Answers (1)

former_member186338
Active Contributor

There is no VBA API to change individual report options.

For each report you may insert EPM formula like:

= EPMReportOptions("XXX","ApplyDynamicFormatting=false")

where XXX - report ID.