Bug Exporting Column ID

There is Bug when Exporting data form a Table View shown in a DashBoard or Just a Table view.

The ID is only shown in the Table and Dashboard views with the condition below:

IN(CONTEXT(“ViewType”), LIST(“Table”, “Dashboard”))

The ID displays in the vIew but is exported as a blank field!

Solved Solved
0 1 79
1 ACCEPTED SOLUTION

Basically, the Export must use some undefined ViewType! (Unless there is an Export ViewType that I have not found in the doucmentation.)

Using a NOT expression to exclude other views works as shown below.

 NOT(IN(CONTEXT("ViewType"), LIST("Detail", "Form")))

View solution in original post

1 REPLY 1

Basically, the Export must use some undefined ViewType! (Unless there is an Export ViewType that I have not found in the doucmentation.)

Using a NOT expression to exclude other views works as shown below.

 NOT(IN(CONTEXT("ViewType"), LIST("Detail", "Form")))
Top Labels in this Space