I have used the below formule to fetch automatically data from a sharepoint list when user seraches a text.
With({wordMatch:If(!IsBlank(Self.Text),LookUp(LargeListAPMI,StartsWith(Title,Self.Text)).Title)},UpdateContext({varThematch:If(!IsBlank(wordMatch),wordMatch,Self.Text),varThematchname:LookUp(LargeListAPMI,Title=wordMatch).field_2}));
Below code in Text default property:
If(!IsBlank(varThematch),varThematch,Parent.Default)
Above code works fine. However when i edit properties for an item in document library and save. Item gets saved sucessfully with new values However when i try to edit properties of another item, The tet box shows the previous id value in the text box. How to remove the cached value.
If(
!IsBlank(DataCardValue3.Text),
With(
{
wordResult:
Concat(
Distinct(
Filter(
LargeListAPMI,
StartsWith(
Title,
DataCardValue3.Text
)
),
Title
),
Value & "; "
)
},
Left(
wordResult,
Len(wordResult) - 2
)
)
)

Report
All responses (
Answers (