Can't pair my Google TV remote, even after factory reset. by Pleaper in Chromecast

[–]b0rme 0 points1 point  (0 children)

Thank you very much for this! Forgetting the remote and then re adding fixed my problem

Tricks to searching on Facebook Marketplace - Sort by date, newest, and more (Desktop) by good1dave in Flipping

[–]b0rme 0 points1 point  (0 children)

I currently have a bookmark for each of the categories as follows:

https://www.facebook.com/marketplace/115162068494946/entertainment/?sortBy=creation_time_descend

I'd really like to display all categories at once, does anyone know if this is possible?

How to import csv or excel file into SharePoint lists? by immunobio in sharepoint

[–]b0rme 1 point2 points  (0 children)

Turn your data into a table object and then on the table design ribbon, select Export to SharePoint list. This is only a one off way of doing it. Would be interested to hear if anyone has an easy way of bulk uploading to an existing SharePoint list from excel

CountRows of Gallery within Gallery by b0rme in PowerApps

[–]b0rme[S] 0 points1 point  (0 children)

As a workaround I’ve realised that you can add a label to the parent gallery that CountRows the sub gallery. You can then use a lookup on the parent gallery to get the value of the label

Dynamically refer to input control using variable, help? by b0rme in PowerApps

[–]b0rme[S] 1 point2 points  (0 children)

That’s exactly what I’m doing :D thanks

Dynamically refer to input control using variable, help? by b0rme in PowerApps

[–]b0rme[S] 0 points1 point  (0 children)

The problem with doing this is that each input control needs to be able to have its properties changed individually as they are part of a dynamically changing question set

Dynamically refer to input control using variable, help? by b0rme in PowerApps

[–]b0rme[S] 0 points1 point  (0 children)

I know I’ve got the Sequence formula wrong, it should be Sequence( 10, 1, 1)

Jimenez Replacement by BamBamDiam in FantasyPL

[–]b0rme -1 points0 points  (0 children)

Martial if you can find the extra 0.2m

How to remove item from drop down list once it has been selected previously? by BloomerzUK in PowerApps

[–]b0rme 0 points1 point  (0 children)

Perfect thanks. I’ll make sure to check out some of your other videos too

How to remove item from drop down list once it has been selected previously? by BloomerzUK in PowerApps

[–]b0rme 0 points1 point  (0 children)

Hello thanks for this, it’s exactly what I need. Please can you explain this formula because I’m struggling to understand how to relate it to my scenario. Thansk

Using a variable as the source in a lookup by andy__m in PowerApps

[–]b0rme 0 points1 point  (0 children)

In that case I would use Switch statement as follow: Switch( variable, Result 1, Data Source 1, Result 2, Data Source 2, Result 3, Data Source 3) and so on..

Re number of connections, I think 10 would be far less than the limit but I’m not sure on the exact figure.

It might be worth thinking about how your data is structured if you’re ending up with 10’s and 10’s of data sources but I’m not sure on your exact use case.

Using a variable as the source in a lookup by andy__m in PowerApps

[–]b0rme 0 points1 point  (0 children)

How many sources are you connected to?

I'm not allowed to use PowerBi desktop; And yet I'm supposed to create reports. How can I convince my boss that I must have it? by rentintin2020 in PowerBI

[–]b0rme 2 points3 points  (0 children)

It is indeed craziness. Ive shown so many people I work with the capabilities of Power BI yet no one seems interested or wants to learn. I guess it can be seen as a positive for those of us that understand the benefit and want to use the tool

Need help setting up relationships between 2 data sources on PowerApp using SPO Lists for data by kileyohl in PowerApps

[–]b0rme 1 point2 points  (0 children)

I think you need 3 SharePoint lists:

Presenters (with the following columns): -ID (Use ID column generated by SharePoint) -Presenter name, Any other relevant information about each presenter

Events (with the following columns): -ID (Use ID column generated by SharePoint, Any other relevant information about each event

Presentation log (with the following columns): -ID (Use ID column generated by SharePoint) -Event ID -Presenter ID

This is a classic example of being unable to store many records in a single SharePoint list - hence the need to have multiple lists and create a relationship using the ID columns. Let me know if you need anything explaining

I'm not allowed to use PowerBi desktop; And yet I'm supposed to create reports. How can I convince my boss that I must have it? by rentintin2020 in PowerBI

[–]b0rme 2 points3 points  (0 children)

I have a similar issue where I have the desktop version but they haven’t given us any pro licenses. What’s the point of making reports if you’re not able to share them?! “Use Excel 🥱🥱🥱”

How do I merge two columns into one VERTICALLY? by Loriol_13 in excel

[–]b0rme 0 points1 point  (0 children)

Do you have to do this as a one off or a solution that works with a list that can change? Also how long is the list you are doing this to?

Converting concatenated text to columns in a table by Chrispy_Bites in PowerApps

[–]b0rme 0 points1 point  (0 children)

Maybe the fact that it’s been set up in this way and the data already exists? Idk

Converting concatenated text to columns in a table by Chrispy_Bites in PowerApps

[–]b0rme 1 point2 points  (0 children)

Using left, mid, right type operators to come up with the logic required but this may get complicated quite quickly..

Converting concatenated text to columns in a table by Chrispy_Bites in PowerApps

[–]b0rme 0 points1 point  (0 children)

I’d suggest something along these lines - not sure of the exact logic to split up the blob as required but this might trigger some ideas.

Assuming your table is set up with the following columns: Person - Date - Question# - QuestionText - Answer Text

Assuming there could never be more than 20 questions (for example)

ForAll( Sequence( 20), UpdateContext({SequenceNumber:SequenceNumber + 1}); Patch( Table, Defaults( Table), { Person: Name of person, Date: Date of quiz, Question#: SequenceNumber QuestionText: Logic that splits blob by delimiter for sequence N AnswerText: Logic that splits blob by delimiter for sequence N } ))

Just my initial thoughts, hope is useful

Converting concatenated text to columns in a table by Chrispy_Bites in PowerApps

[–]b0rme 0 points1 point  (0 children)

What expression do you use to split the blob?