list
6 TopicsFolder in a Sharepoint LIST - How to access?
Hello, is there any way to access data from a folder that is inside of SharePoint list? After connecting to the list, it shows the folder as a Content Type - 'Folder' and there is no way to retrieve items from it. Is there maybe another method to access the library on SharePoint?Solved1KViews0likes4CommentsHow to list out my output results
Lookup keyword using "Searchsheet" table to find match in "Stringsheet" table. 2 types of conditions: (i) When BOTH [Search1] AND [Search2] are found in "Stringsheet" table; (ii) When Either [Search1] OR [Search2] are found in "Stringsheet" table; List out the results found. Appreciate your help greatly to list out the results found in yellow highlights below. I am not familiar with List function. Thank you. Link for my Power Bi file : List out results ContainsString AND = VAR __String = [String1] VAR __Table = ADDCOLUMNS( 'Searchsheet', "Found", CONTAINSSTRING( __String, [Search1]) && CONTAINSSTRING( __String, [Search2])) VAR __Result = IF( COUNTROWS( FILTER( __Table, [Found] = TRUE() ) ) > 0, TRUE(), FALSE() ) RETURN __Result ContainsString OR = VAR __String = [String1] VAR __Table = ADDCOLUMNS( 'Searchsheet', "Found", CONTAINSSTRING( __String, [Search1])) VAR __Table1 = ADDCOLUMNS( 'Searchsheet', "Found", CONTAINSSTRING( __String, [Search2])) VAR __Result = IF( COUNTROWS( FILTER( __Table, [Found] = TRUE() ) ) > 0, TRUE(), IF( COUNTROWS( FILTER( __Table1, [Found] = TRUE() ) ) > 0, TRUE(), FALSE() ) ) RETURN __ResultSolved971Views0likes3CommentsRetrieving the biggest text length value for every column in table
Hi! I'm cleaning and preparing data before an erp migration, and I would prefer to have the task more automated since the it will be recurring. I need to check every column for it's longest value (longest as in largest amount of characters) to ensure that the set length limitations in the target erp do not cut any values Let's say I have data that looks like this: Table.FromRecords({ [CustomerID = 1, Name = "Bob", Phone = "123-456712"], [CustomerID = 22, Name = "Jim", Phone = "987-6543"], [CustomerID = 333, Name = "Paul", Phone = "543-7890"], [CustomerID = 4444, Name = "Ringo", Phone = "232-155042424"] }) Here I would want a table with two colums, or any viable solution, really. One with the column names from the source data, and one with a number representing the longest value for that column. Also preferably not hard coded with column names or similar, to be able to swiftly reuse for new cases. Something like this: ColName - Len CustomerID - 4 Name - 5 Phone - 13 Hope you can crack this one!Solved1.9KViews0likes3CommentsVer imagen desde LIST
Estimada comunidad: Tengo una imagen en el sharepoint - list y no se me muestra en el informe (visto desde service). Se que el link esta correcto porque lo coloque como hipervenculo y me abre la imagen sin problemas, pero la idea es que se pueda ver desde el informe web. Atento a los comentarios. Saludos.Solved798Views0likes3CommentsBacking out from quarterly to monthly
Help me Rhonda! <---Also, not sure if Dax is the right place for this post, so please let me know if I should repost elsewhere. Our organization collects performance measure data from internal program areas via Microsoft Power Apps. That info is stored in about a dozen SharePoint Lists. Data is entered in monthly (sometimes more often but that is because people make mistakes and have to re-enter the data). This shows in the lists pmd_element data. The App was originally designed to report on a quarterly basis, so that info gets rolled up to that time period for what was approved by the manager and shows in the pmd_measure data List. You'll see that the Numerator/Denominator columns are actually references to rows in the pmd_element data List, so they are referencing the entries that were ultimately approved and are legit. How can I back out of this to show the monthly approved entries though? I've been able to do stuff on this quarterly basis, but now leadership wants it monthly and I'm losing my mind. The person who created the App left and I have hardly any experience in that realm. On top of that, I also need to account for the fact there are different types of measures (e.g. percentage of calls taken vs a sum of number of complaints received) and that some measures are cumulative (aggregating for the year) and others non-cumulative (only needing to show for that quarter or other time period). There are other lists like pmd_target and pmd_measure that have columns to help with that aspect, but I'm lost on how to handle those as well. Anyway, what do you think? What can I do? What extra info can I give you to help you help me 🙂498Views0likes1CommentFilter a Fact Table to Exclude Item Exceptions By Date Range
I have a list of transactions by Date and Item (multiple dates and items) and now I need to exclude certain items based on the date ranges in this second table. (items can appear multiple times - item A is offline between 1/1/2023 and 1/4/2023, but also item A is offline 2/15/2023-2/16/2023) If the transaction date, for that item appears in one of these entries, it needs to be flagged 1, otherwise 0. ...I did set up an inactive many to many relationship on item ID, so I could call upon item IDs to match them, but filtering between the date fields is tricky. ... also, i do have a date table in this modelSolved1.3KViews1like2Comments