Thank you! I am going to try now. Would the SharePoint DateYear Calculated column be returned as text?
Meneghino - no luck with the filtering. I have tried both code samples you provided.
Any other thoughts?
DateYear should be returned as a number otherwise you cannot make mathematical comparisons.
I am just getting back to this. Either way that I try produce the delegable error - am I missing something? The blue 'highlighted' parts the first DateYear, the || and the last =
ClearCollect(colYearFilter,
Filter('CC - Incident Reports', DateYear=CurrentYear || DateYear = CurrentYear-1))
Hi @tianaranjo
Once again, you should define DateYear as a number column, not text
Thanks again; I do have the SP column set up as a number field. I was able to resolve with the following:
ClearCollect(colAllEvents,
Filter(colAllEvents, Value(DateYear)=Year(Today()) || Value(DateYear)=Year(Today())-5))
I appreciate your replies!
Hi @tianaranjo
Glad you got it resolved.
However, the fact that using Value() you resolve the issue demonstrates that DateYear is text and not a number.
You can see this in your own screenshot, where the SharePoint calculated column's return data type is selected as "Single line of text' and not 'Number' You need to select 'Number' and refresh the data source.
Hi!
I'm trying to implement this;
I am getting an error on the UpdateContext (cannot be applied to global variables?)
& How do I create a Hundred Chart?
I am working with SQL data
Please and thankyou
J
P.s this is my code so far
@jesenavaranjan wrote:Hi!
I'm trying to implement this;
I am getting an error on the UpdateContext (cannot be applied to global variables?)
My understanding is that you must apply to code to i.e., a button OnSelect - it won't work in App.OnStart. At least it didn't me.
I have another issue however.
I get 'invaid invocation' error with
UpdateContext({maxiter: RoundUp((lastrecord.MilestoneID-firstrecord.MilestoneID)/500,0)});
So I tried replacing it with: (assuming RecordID in my case is the ID number in my SharePoint list?)
Set(varMaxiter,RoundUp((lastrecord.ID - firstrecord.ID) / 100,0));
and I'm not sure if this is correct, because I am now stuck with another error:
Clear(datasource_temp);
What is datasource temp? What am I missing? Or is this one of the things I ignore as it gets creater later in the code?
Hi @mr-dang
I am using the methods you provided on Sharepoint database.
But i can only retrieve first 2000 rows only.
It shows delegation warning on RecordID and && functions.
Filter(datasource,RecordId>=firstrecord.RecordId+min && RecordId<firstrecord.RecordId+max)
Can you help me resolve this. It will be great help.
Thanks
User | Count |
---|---|
137 | |
130 | |
77 | |
72 | |
69 |
User | Count |
---|---|
221 | |
136 | |
78 | |
59 | |
53 |