Rad

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 99 total)
  • Author
    Posts
  • in reply to: spjs.ac.textField #39115
    Rad
    Participant

      thank you

      in reply to: spjs.ac.textField #39111
      Rad
      Participant

        thank you, this helps.

        diff q – is there a way to hide the recycle bin and edit links from the left nav of a List view? I know it can be done for the web pages using the script editor in web part. But couldn’t find any help for a List View.

        in reply to: spjs.ac.textField #39108
        Rad
        Participant

          i tried using spjs.ac.setFieldValue but doesn’t seen to to work

          in reply to: vLookup #39103
          Rad
          Participant

            AI is giving below suggestion and says this can’t be achieved only entering where condition. CAML’s <Where> does row-level filtering; it doesn’t support grouping or aggregation (e.g., “the max Date per Name”). That requires
            <GroupBy> + <OrderBy> with Collapse=”TRUE”

            <View>
            <Query>
            <OrderBy>
            <!– Sort by Name ascending, then Date descending –>
            <FieldRef Name=”Name” Ascending=”TRUE” />
            <FieldRef Name=”Date” Ascending=”FALSE” />
            </OrderBy>
            </Query>

            <!– Collapse=TRUE returns only the first row per Name group –>
            <GroupBy Collapse=”TRUE” GroupLimit=”1000″>
            <FieldRef Name=”Name” />
            </GroupBy>

            <!– Return only the columns you need –>
            <ViewFields>
            <FieldRef Name=”ID” />
            <FieldRef Name=”Name” />
            <FieldRef Name=”Date” />
            </ViewFields>

            <!– Adjust as needed –>
            <RowLimit Paged=”TRUE”>5000</RowLimit>
            </View>

            in reply to: vLookup #39093
            Rad
            Participant

              Hello again, is there a way to add filter to the vLookup? For example, I want to only display the most recent records based on a date field. Below is an example of how data is laid out. I want to pull the most recent record based on name/date and display it in the vLookup. Any help is greatly appreciated. Thank you

              ID Name Date
              1 John 1/1/2026
              1 John 1/20/2026
              1 John 1/22/2026
              1 Sam 1/4/2026
              1 Sam 2/23/2026
              1 Peter 1/5/2026

              so, final result should yield:
              1 John 1/22/2026
              1 Doe 2/23/2026
              1 Peter 1/5/2026

              in reply to: vLookup #39075
              Rad
              Participant

                thank you, that resolved it

                in reply to: vLookup #39072
                Rad
                Participant

                  Hi, the vLookup grid was working fine until today when i users are seeing the threshold error. What’s causing this and how can I resolve it?

                  in reply to: vLookup #39021
                  Rad
                  Participant

                    got it working now. thank you!

                    in reply to: vLookup #39020
                    Rad
                    Participant

                      ah, its not. it’s in the refresh mode

                      in reply to: vLookup #39017
                      Rad
                      Participant

                        I am in debug mode and stepping through the code so it’s connected

                        in reply to: vLookup #39016
                        Rad
                        Participant

                          custom js

                          in reply to: vLookup #39012
                          Rad
                          Participant

                            for some reason, the logic const row = document.querySelector… returns a null although the element id does exist. See attaced screenshot.

                            in reply to: vLookup #39010
                            Rad
                            Participant

                              Hi again, how do I reference an item in fld1 in a vLookup, corresponding to the item being edited in fld3?

                              vlookup
                              fld1 fld2 fld3

                              in reply to: vLookup #38992
                              Rad
                              Participant

                                hi, is there a limit for vLookup, like how many records can be associated to the parent and or how many can display?

                                in reply to: vLookup #38971
                                Rad
                                Participant

                                  q regarding vLookupIds – if I bulk loading recs, do the LookupIds need to be in the DFFS format or can it be a GUID?

                                Viewing 15 posts - 1 through 15 (of 99 total)