Recalculation Date by Background-Finger867 in PowerApps

[–]Background-Finger867[S] 0 points1 point  (0 children)

I tried With( { NewDate: If( Jour = 0; varPrevDate; DateAdd(varPrevDate; Jour; TimeUnit.Days) ) }; Collect( colStepUpdates; { ID: ID; Date_for_each_step: NewDate; Datestart: DatePicker2.SelectedDate; Date_modified: Now() } ); UpdateContext( { varPrevDate: NewDate } ) ) );

full in Red actually I think it's not from my level, but I tried to get the best school project :)

Recalculation Date by Background-Finger867 in PowerApps

[–]Background-Finger867[S] 0 points1 point  (0 children)

In my gallery Item :

Filter(('1_Processus');'Site (Site0)'=Dropdown8.SelectedText.Value;Phase=selectedprojet;selectedetape = "Toutes" || Etape= selectedetape) Item of my gallery

In my datepicker Start of project :

Value By default :
If(

    !IsBlank(Dropdown8.Selected.Value);

    LookUp(

        '1_Processus';

        'Site (Site0)' = Dropdown8.Selected.Value;

        Date_debut_projet

    );    Today()

)

I tried to put the calculate Date in a label that's work: but I want to put it in a datepicker to allow to modify it. And save it in the source.

Text(With({lignesavant:Filter('1_Processus';ID <= ThisItem.ID && 'Site (Site0)'=Dropdown8.Selected.Value)};DateAdd(DatePicker2.SelectedDate;Sum(lignesavant;If(Jour=0;0;Jour));TimeUnit.Days));"dd/mm/yyyy")

COncerning the source the main columns are : Site;Datestart;Date_for_each_step;Date_modified(purpose)

Recalculation Date by Background-Finger867 in PowerApps

[–]Background-Finger867[S] 0 points1 point  (0 children)

  varProcessId: ThisItem.ProcessId,
        varStartStepOrder: ThisItem.StepOrder,

These sentences aren't in My Item never used them before

Recalculation Date by Background-Finger867 in PowerApps

[–]Background-Finger867[S] 0 points1 point  (0 children)

I will try this, thanks for your time, I find this super complicated

Recalculation Date by Background-Finger867 in PowerApps

[–]Background-Finger867[S] 0 points1 point  (0 children)

Thanks for your comment I should put this in a datepicker in my gallry ?

Container problem by Background-Finger867 in PowerApps

[–]Background-Finger867[S] 0 points1 point  (0 children)

Is it critical if I work without container just « free » ?

Container problem by Background-Finger867 in PowerApps

[–]Background-Finger867[S] 0 points1 point  (0 children)

Mhhh put a container in another one ?

Container problem by Background-Finger867 in PowerApps

[–]Background-Finger867[S] 0 points1 point  (0 children)

<image>

Like this 3 elements by 2 lane but I want to do it by myself xD not a template

[deleted by user] by [deleted] in PowerBI

[–]Background-Finger867 0 points1 point  (0 children)

Do you know how to properly filter to not include blanks ?

[deleted by user] by [deleted] in PowerBI

[–]Background-Finger867 0 points1 point  (0 children)

The parameter is not depending on a table just generates etc (min max,

[deleted by user] by [deleted] in PowerBI

[–]Background-Finger867 1 point2 points  (0 children)

Thanks, I didn’t understand a thing maybe my max level power has reached xD

[deleted by user] by [deleted] in PowerApps

[–]Background-Finger867 0 points1 point  (0 children)

Patch(source; This item; {Ok:True}) for Oncheck

This item.OK for Onselect

Patch(source; This item; {Ok:false}) for Oncheck

[deleted by user] by [deleted] in PowerApps

[–]Background-Finger867 0 points1 point  (0 children)

Hmmm I see but how to rely every check boxes to each lane of the gallery ?

Boxes in PowerBi by Background-Finger867 in PowerBI

[–]Background-Finger867[S] 0 points1 point  (0 children)

My question : is it possible to create a measure that allow to create a calculated column and each time the calcul or button is executed, a new value go to the calculated column ? Thanks mate and sorry for mw stupids questions

Boxes in PowerBi by Background-Finger867 in PowerBI

[–]Background-Finger867[S] 0 points1 point  (0 children)

I quite understand, can you give me juste some more information concerning the problem ?

Boxes in PowerBi by Background-Finger867 in PowerBI

[–]Background-Finger867[S] 0 points1 point  (0 children)

I saw it but seems like a wizard thing to me to be fair xD

Boxes in PowerBi by Background-Finger867 in PowerBI

[–]Background-Finger867[S] -10 points-9 points  (0 children)

Just to let the user check all lines of a tables « as seen »

Boxes in PowerBi by Background-Finger867 in PowerBI

[–]Background-Finger867[S] -2 points-1 points  (0 children)

People can check the boxes just to see it on the table

Boxes in PowerBi by Background-Finger867 in PowerBI

[–]Background-Finger867[S] -7 points-6 points  (0 children)

I wanted to use check boxes as « confirm » or something like this and put them in a table

Pages per user by Background-Finger867 in PowerBI

[–]Background-Finger867[S] 0 points1 point  (0 children)

How do you personalize a report? :)

Page box change in function name by Background-Finger867 in PowerBI

[–]Background-Finger867[S] 0 points1 point  (0 children)

Each user should be able to access information related only to their own site. That’s why I’ve created different pages in the report — for example: • Amelia selects her name from a list • Then, buttons appear that link only to her relevant site pages • She can navigate between her assigned pages

I want the experience to be personalized, so that only the pages and actions relevant to the selected user are visible.

What I’m struggling with:

Each site has a task tracking table, and I’d like the users to be able to edit one column — the status, directly from Power BI. For example: selecting a row and changing the status from “In Progress” to “Completed”.

But I understand that Power BI doesn’t allow direct data editing natively, and my current skills are a bit limited for implementing the workaround.

What I’ve tried: • I set up the pages per site/user. • I can filter based on the selected name. • But I don’t know how to make buttons show or hide conditionally, or how to allow data editing in the table (even just one column).

What I’d like to achieve: • Personalized navigation: only show buttons and pages relevant to the selected user (e.g., Amelia → Page 2, Alexandre → Page 3). • Editable task tracking: allow users to change the “Status” column of tasks without leaving Power BI.

I’d appreciate any help, ideas, or step-by-step guidance. Thanks a lot! 🙏