Skip to main content

Vote (0) Share
's profile image

on

Comments (0)
's profile image Profile Picture

Daniel Andres Gonzalez Cortez on 12 Dec 2024 13:39:20

RE:

in our enterprise, this feature is going to be important for operative areas in consolidade reports.

's profile image Profile Picture

Eric Jacobson on 12 Dec 2024 13:37:17

RE:

Why was this feature taken away to begin with?Hiding reports is not meant to be a security technique anyway.

's profile image Profile Picture

Julien Le Tannou on 12 Dec 2024 13:13:28

RE:

Would help a lot.

's profile image Profile Picture

Nick Creak on 12 Dec 2024 11:57:02

RE:

Please add as will be very beneficial.

's profile image Profile Picture

Ihor Osarchuk on 12 Dec 2024 10:19:51

RE:

Yes, I support it. This possibility is needed.

's profile image Profile Picture

Ant Couzens on 12 Dec 2024 09:46:30

RE:

Without the ability to carry these formats all the way into Excel from PBI semantic models users will just go around the model and create their own versions, defeating the object of the whole exercise. Please let's get this upvoted and done.

's profile image Profile Picture

Werner Zirkel on 12 Dec 2024 06:52:47

RE:

test

's profile image Profile Picture

Fahad Qadir on 12 Dec 2024 05:03:00

RE:

Why isn’t this available? This would be great to have.

's profile image Profile Picture

Erick Erick on 11 Dec 2024 23:07:35

RE:

Thanks Shravan. It is great that finally we are getting basic functionality restored, but it only allows 5 pre-defined columns that are very basic. Is there anything in the roadmap to allow users to define the columns (or attributes) to be exported?

's profile image Profile Picture

John Butler on 11 Dec 2024 22:31:39

RE:

A base single Instance CU would be work well. No need to recreate with extensions.The SI CU just needs to store KeyValue pairs to be used later in a process. Keep it simple.codeunit 55108 SingleInstanceKeyValues{  SingleInstance = true;   var    KeyValues: Dictionary of [Text, Text];  procedure SetKeyValue(KeyName: Text; KeyValue: Text)  begin    if KeyValues.ContainsKey(KeyName) then      KeyValues.Remove(KeyName);    KeyValues.Add(KeyName, KeyValue);  end;  procedure GetKeyValue(KeyName: Text) KeyValue: Text  begin    if KeyValues.ContainsKey(KeyName) then      exit(KeyValues.Get(KeyName))    else      exit('');  end;  procedure RemoveKeyValue(KeyName: Text)  begin    if KeyValues.ContainsKey(KeyName) then      KeyValues.Remove(KeyName);  end;}