PowerApps PDF Viewer SharePoint Document Library without flow

  Рет қаралды 140,055

Reza Dorrani

Reza Dorrani

Күн бұрын

In this Power Apps tutorial video, we will explore how to use the PDF Viewer control in Power Apps to show PDF files & Office documents (Word, PowerPoint, Excel) from SharePoint Document Library without using Power Automate flows. PowerApps PDF Viewer control is using the API to transform Office documents into a PDF file. We can also use the Thumbnail property to show document previews. This entire concept showcases using the PowerApps PDF viewer control without flow.
#PowerApps #PDF #SharePoint
Reference Blogs:
www.cleverworkarounds.com/2018...
www.cleverworkarounds.com/2017...
Table of Contents:
00:00 - Introduction to Power Apps PDF Document Viewer
00:50 - SharePoint Document Library Setup
02:15 - Show Thumbnail of Documents in Power Apps
08:12 - Power Apps PDF Viewer show Word, PowerPoint & Excel documents without flow
15:56 - Show PDF files from SharePoint in PDF Viewer control without flow
24:45 - Subscribe to Reza Dorrani channel

Пікірлер: 1 200
@DarrenCarlson-zv6ec
@DarrenCarlson-zv6ec 2 ай бұрын
Ok, I figured the multi-user workaround this morning and am sharing my results. Maybe it's worth pinning so it's more easily found. I think a lot of us are wandering around in the dark bumping into stuff because we're not full-time developers and often need very clear stepwise instructions to follow. If I've messed anything up in these instructions let me know and I'll edit this comment. So, once you have things working exactly as Reza has so elegantly explained, do the following: 1. Grab a PNG from somewhere. 2. Rename it DONOTREMOVE.png 3. Put it in the lowest/highest level of your document library. You know, the place that exists as soon as you create a new library before you do anything else. NOTE: The file needs to be here to ensure the path only contains the root of the library. 4. Refresh your datasource/library in the app and click on that image in the gallery. Leave the label control in place with Gallery.Selected.Pic as the text so you can see that the appres link is properly generated. 5. Now we're going to change the document property so that it uses a dynamically generated link for that DONOTREMOVE.png file with substitutions for the actual filename and path. 6. Refresh your datasource/library in the app again. 7. Use the Substitute statement from @nikolaus-lukasthomas6288 in the Document property of the PDFViewer. 8. substitute(LookUp(YOURLIBRARYNAME, Name="DONOTREMOVE").Pic, "PowerAppsDocs%252fDONOTREMOVE.png", "")&EncodeUrl(Gallery2.Selected.'Folder path' & Gallery2.Selected.'File name with extension') Bob's your uncle. Huge thank you to @RezaDorrani and @nikolaus-lukasthomas6288 for providing me all the answers I needed.
@DarrenCarlson-zv6ec
@DarrenCarlson-zv6ec 2 ай бұрын
And to reply to my own comment, here is how you remove the need for the DONOTREMOVE image. 1. Put this in the OnSelect of your gallery: Set(appresValue, LookUp(YOURLIBRARYNAME, Name = Gallery2.Selected.Name).Pic) 2. If you still have that debugging label, change it's Text property to appresValue and verify that gallery is setting that varible properly. 3. Use @floscar logic to Split the text in that variable and create a appres link specific to the document chosen. This: First( Split( appresValue,"path=%252f")).Value & "path=%252f" & EncodeUrl( Gallery2.Selected.'Folder path' & Gallery2.Selected.'File name with extension'), And if you're struggling at all that section belongs inside the larger With statement that comprises the entire Document property for the PDF viewer. Here it is in it's entirety for context. If( Last( Split( Gallery2.Selected.'File name with extension',//File name with extension', "." ) ).Value = "pdf", First( Split( appresValue,"path=%252f")).Value & "path=%252f" & EncodeUrl( Gallery2.Selected.'Folder path' & Gallery2.Selected.'File name with extension'), Substitute( Gallery2.Selected.Thumbnail.Large, "/thumbnail", "/pdf" ) ) And what's actually interesting is that all of this is so dynamic that that code above is copied straight out of my app. I didn't have to obfuscate anything at all.
@RezaDorrani
@RezaDorrani 2 ай бұрын
Pinned
@user-qg4cx8xi7o
@user-qg4cx8xi7o 2 ай бұрын
Is there a way a video can be made doing this part?
@RezaDorrani
@RezaDorrani 2 ай бұрын
@@user-qg4cx8xi7o I don’t plan to make a follow up video on this
@user-qg4cx8xi7o
@user-qg4cx8xi7o 2 ай бұрын
@@RezaDorrani Okay Dokay. Thank you for helpping get it settup. I ended up using a switch case to check for user's name's to know which link is used but hopefully I can figure out the pinned comments way.
@floscar
@floscar 10 ай бұрын
First; thank you so much Reza. This is a very clever solution. For all those having issues, I was having issues too. It has been discussed in a few comments. The problem is, as someone mentioned, that the appres string that is generated includes a unique user code embedded within the string. So while the hard coded appres string will work for the developer all day, it will not work for anyone else, as they will have a different string generated/required for them. SO....the solutions is to grab the appres code dynamically, for each user. This is what I used. On-select of the gallery, grab a variable Then in the Documents property for the PDFviewer split and append string as follows: (replacing the hardcoded appres string) First(Split(appresValue,"path=%252f")).Value&"path=%252f"&EncodeUrl(gallery.Selected.'Folder path' & gallery.Selected.'File name with extension') This solved it for me. Please upvote so people can see the solution. Thanks
@RezaDorrani
@RezaDorrani 10 ай бұрын
You got my vote!
@gregoirepesenti
@gregoirepesenti 4 ай бұрын
hi there, what do you mean by "grab a variable " how do you write it in on select property ? thanks you
@ljievsesd
@ljievsesd 4 ай бұрын
@@gregoirepesenti I had the same question at first. In the gallery's OnSelect prop, set a variable to the text string of the original appres path for the dummy image file in your library. So Set(varAppresValue, LookUp(DocLibrary, Name = "YourImageName").pic). Then split that variable in the PDF viewer Documents prop so it will replace parts of the string with the dynamic values of the selected document instead of the dummy file.
@gregoirepesenti
@gregoirepesenti 4 ай бұрын
@@ljievsesd thanks for your quick response. I tried this Set(varAppresValue; LookUp(DocsArticles; Nom1 = "1011200.pdf").PDF) but everything turn red in the function (I am using french power apps)
@gregoirepesenti
@gregoirepesenti 4 ай бұрын
hi@@ljievsesd thanks for your help ! So first, I set my var : Set(VarAppresValue;LookUp('2_Devis_Reparation';Nom = "1676970.png").appresdoc) then I tried to put it in my appres code. I read somewhere that "the 32 digit id/number between 'azure-apim.net%2Fapim%2Fsharepointonline%2F' and 'datasets%2Fhttps' changes by user" So I tried this : appres://datasources/2_Devis_Reparation/table/ff23ac89-f437-40cb-811c-82156cc3d7e1/rows/1607/reference/https:%2F%2Feurope-002.azure-apim.net%2Fapim%2Fsharepointonline%" & varAppresValue // replaces the 32 caracters & "%2Fdatasets%2Fhttps%25253a%25252f%25252xxxxxxxxxxxxxxxxxxxxxxx%25252fsites%25252fT.SFS-CATALOGUEFI%2FGetFileContentByPath%3Fpath=%252f" & EncodeUrl(GallerieDevisReparation_2.Selected.'Folder path' & GallerieDevisReparation_2.Selected.'File name with extension') But it does not works any more. Do you have any other advice ? thanks buddy
@josephclements481
@josephclements481 3 жыл бұрын
Absolutely brilliant!! This was a great tutorial and right on time for one of my projects. Please, do continue with the breadcrumbs and the folders! Thank you!!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you. Breadcrumbs and folders is video is here kzfaq.info/get/bejne/itOCeaSBnN64p58.html
@avinoamrothenberg1244
@avinoamrothenberg1244 3 жыл бұрын
Must say - it's one of THE BEST !! Now I can't wait to see part 2 with folders and filters.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Coming soon!
@strategik365
@strategik365 2 жыл бұрын
This is probably the most insightful and useful Power Apps video I have watched this year. Genius. Thanks Reza.
@RezaDorrani
@RezaDorrani 2 жыл бұрын
🤩 Thank You so much
@ashtoshsingh8310
@ashtoshsingh8310 3 жыл бұрын
This is brilliant, every time I watch your video I learn something new, Thanks very much for your work!!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you. Glad to know that videos are offering something new.
@ogunkolavictoria4695
@ogunkolavictoria4695 3 жыл бұрын
Wow!!!!!!! This is absolutely amazing and mind blowing, well Done Reza!!. Your videos are highly educative, informative and prompt. I am looking forward to the version 2 of this video and many more. Thank you!!!!!!!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you for your kind words. Working on version 2.
@user-zw7ky4ez4u
@user-zw7ky4ez4u Жыл бұрын
I never normally comment on KZfaq vids, but this is brilliant. Thank you Reza!
@RezaDorrani
@RezaDorrani Жыл бұрын
I appreciate that!
@cztop54
@cztop54 3 жыл бұрын
As always, Reza, A lifesaver!! Thanks so much! Just love your teaching style!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
You are so welcome!
@vkrish79
@vkrish79 3 жыл бұрын
Amazing work Reza.. No words to express. I was looking for a similar functionality instead of using Flow and here it as a ready to use.. Clear and precise.. I am really looking forward towards part 2 of this video. Your videos are extremely useful for amateur developers like me.. Great source of knowledge
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you. Working on part 2
@danjarupath
@danjarupath Жыл бұрын
Best teacher Best programmer Best apps creator Best applicator Best of the best Salute to you
@RezaDorrani
@RezaDorrani Жыл бұрын
Thank You 🙏
@mohammedsubbirulmuksud1978
@mohammedsubbirulmuksud1978 3 жыл бұрын
Mate, you have killed it. Spot on. I was also looking a way to display PDFs without flow. You gave much more. And the next video you talked about, I'm waiting for it. Thanks.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Glad to hear that! Working on the next video.
@cristovaodarosa2050
@cristovaodarosa2050 3 жыл бұрын
Very cool! I didn't quite understand the part about having to convert pdf to pdf, but I'll watch it again with more attention. This apprentice of PowerApps here in Brazil is very grateful for his teachings. 👍 It cost!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Follow the steps for the pdf part again
@ericmccleave170
@ericmccleave170 3 жыл бұрын
This video came along at the perfect time for the current project I am working on, thank you so much for producing this! I did want to share real quick an addition I added to this to allow you to launch a PDF from the viewer, since that control seems to not show up when looking at a PDF doc after implementing your solution. I just added an icon in the same size and position of the pdf viewer pop out icon. I then modified it's visible property to true, only if the document type is PDF. For the on select property I just used Launch('Gallery'.Selected.'Link to item')
@RezaDorrani
@RezaDorrani 3 жыл бұрын
That’s a smart add. I did the same in my project. I try to keep videos under 30 mins and some small updates get missed. Thanks for sharing your scenario.
@jasjitchopra
@jasjitchopra 3 жыл бұрын
Genius ! Would love to see the next iteration with folders and breadcrumbs :)
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Folders and breadcrumbs is in the works.
@RezaDorrani
@RezaDorrani 2 жыл бұрын
Folders and breadcrumbs - kzfaq.info/get/bejne/itOCeaSBnN64p58.html
@kspalanifamily9892
@kspalanifamily9892 2 жыл бұрын
Thanks Reza Dorrani. Brilliant research and simple to follow instructions.
@RezaDorrani
@RezaDorrani 2 жыл бұрын
You are most welcome!
@philipdickason4587
@philipdickason4587 3 жыл бұрын
Amazing hack Reza. I have been looking at how to do this without needing flow, This is exactly what I need to finish a project far quicker. Thank you
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Glad to hear that! Thanks for watching
@alzaimoor79
@alzaimoor79 3 жыл бұрын
you are genius, omg I need cup of tea to hundel all idea in my head after seeing this video. thanks for sharing
@RezaDorrani
@RezaDorrani 3 жыл бұрын
☕️ 👍
@robelser
@robelser 3 жыл бұрын
You’ve cracked what I’ve been trying to work around for the past week. Thank you, sir. Folders and breadcrumbs please!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Glad to hear that. Folders and breadcrumbs is in the works.
@brucem4508
@brucem4508 9 ай бұрын
Amazing video! Still 2 years later - ty - qq - which video of yours is corresponding breadcrumbs and folders? @@RezaDorrani ty again!!
@RezaDorrani
@RezaDorrani 9 ай бұрын
@@brucem4508 kzfaq.info/get/bejne/itOCeaSBnN64p58.htmlsi=9UZMU_ma8OLNxD5D
@TheRafasm
@TheRafasm 3 ай бұрын
You are the best teacher about Power apps, congratulations for your job!!!
@RezaDorrani
@RezaDorrani 3 ай бұрын
Thank You so much!!!
@richardbird3058
@richardbird3058 3 жыл бұрын
Thanks Reza.. very helpful to see how you displayed the documents without using a Flow.. is interesting that a blog/hack from back in 2017 is still useful today. Folders and breadcrumbs would be an excellent sequel to this video.. keep up the great work..thanks again
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thanks Richard. Folders and breadcrumbs is in the works.
@SiMataR01
@SiMataR01 3 жыл бұрын
What a great solution! You really are great, Reza! Thank you very for your discovery!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
You are most welcome
@SiMataR01
@SiMataR01 2 жыл бұрын
Hi @@RezaDorrani. I have been successful with the pdf viewer from this video but lately it is not working until now. Is there a probable change at the backend? The error is: "Couldn't open PDF file Make sure the PDF file is coming from an HTTPS link."
@RezaDorrani
@RezaDorrani 2 жыл бұрын
@@SiMataR01 Check pinned comment + ensure your App authoring version is set to a previous recommended version.
@sombrasesegredos123
@sombrasesegredos123 3 жыл бұрын
Thank you Reza, you helped me a lot with my project.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Glad to hear that
@toddhawthorne7768
@toddhawthorne7768 3 жыл бұрын
Amazing video Reza. So much value! Looking forward to the navigating folder structure add-on.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you. I am working on the next part.
@berndkroon5147
@berndkroon5147 3 жыл бұрын
Wow, Reza, my head explodes from pure joy. I had been using Paul Culmsee's flow, but it is a quite complicated ... the solution you show here is mc^2. Thank you!!!!!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank You!
@derekbird6667
@derekbird6667 Жыл бұрын
Just found this video and relatively new to Power Apps, but this video was absolutely "FANTASTIC" . I also sincerely appreciate your efforts to make it so easy to follow what you have done. You are a fantastic trainer and very articulate! Thank you!
@RezaDorrani
@RezaDorrani Жыл бұрын
Thank You so much! I have a better version of this video coming out next week.
@EddieSelfene-xi1fh
@EddieSelfene-xi1fh Ай бұрын
@@RezaDorrani can u share the link plz
@RezaDorrani
@RezaDorrani Ай бұрын
@@EddieSelfene-xi1fh that week was 10 months ago :) Here is the link kzfaq.info/get/bejne/gN6ArdGFutnFmYU.htmlsi=cXGjz7gD9j6EAt7J
@raphaelaureliano
@raphaelaureliano Жыл бұрын
Congrats on this video! I was looking for something without flow and this video helped me a lot. Just an obs in my case: I needed to replace "result" with "value"
@RezaDorrani
@RezaDorrani Жыл бұрын
Result to Value update was a change made in platform recently
@joelgeorgeejoseph
@joelgeorgeejoseph 3 жыл бұрын
Brilliant video Reza. Too good. Always have wondered how to optimize the pdf viewer control. This is just the next level.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thanks Joel
@gowrishankarg9922
@gowrishankarg9922 3 жыл бұрын
Thank you, Reza. Beautiful approach. Felt so very happy. Thank you.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
You are most welcome
@MrMytubejc
@MrMytubejc 3 жыл бұрын
Great work around, some id been using but helpful on when it was a PDF best way to do it without a Flow. Hopefully Microsoft will implement though at some point a proper “document viewer” with some additional features. Would love to see you expand this further especially with the folder and breadcrumbs
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Folders and breadcrumbs video is in the works. I have that App working and it is 🤩
@dichternebel01
@dichternebel01 3 жыл бұрын
Awsome job! Worth to mention is ,that it is mandatory at 18:54 to change the format to picture otherwise it will just parse the plain url to Powerapps. However thank you!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Great point! It absolutely is mandatory to do that.
@bellcore1
@bellcore1 2 жыл бұрын
Thank you!
@DoctorBekova
@DoctorBekova Жыл бұрын
Wow, Thanks a lot! it was first PowerApp and it worked because of your instructions!
@RezaDorrani
@RezaDorrani Жыл бұрын
Glad to hear that!
@davidc9652
@davidc9652 3 жыл бұрын
Reza, awesome does not even describe your genius. If there was a Power Apps category on America's Got Talent, I would submit your name. I had built a document library using another method I found but after seeing this video, I scrapped it and built it completely over using this solution. Can't thank you enough for the contributions you make to the community.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Wow, thank you! So happy to hear the solution is useful and many are implementing them in their own use cases.
@vishalvaghela8767
@vishalvaghela8767 Жыл бұрын
Can you please tell, how did you use this for documents library?
@arupjt
@arupjt 3 жыл бұрын
Please build on the folders and breadcrumbs. This is very informative.. Thanks Reza.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Working on that video
@franknielsen3219
@franknielsen3219 3 жыл бұрын
What can I say??? It is just awesome all the way
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank You 😊
@rahuln7863
@rahuln7863 3 жыл бұрын
One word for you Reza "Life Saver", you make Power Apps worthwhile with your videos, please continue with videos its a great source of knowledge millions of developers
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you Rahul
@danulienka4030
@danulienka4030 2 жыл бұрын
Exactly what I have been looking for. It all worked for me Clean and simple solutions Thank you very much.
@RezaDorrani
@RezaDorrani 2 жыл бұрын
Great to hear!
@vaibhavnarain9756
@vaibhavnarain9756 Жыл бұрын
Hi Rezza, I am great admirer of your work and have learnt a lot. Thanks for such great stuff. I tried this solution, works flawlessly for me but other users are not able to see the documents in PDF viewer even though I have given them "Full Control" over the Sharepoint folder. Anything that you could advise.
@RezaDorrani
@RezaDorrani Жыл бұрын
Check pinned comment on video
@sylviat5211
@sylviat5211 Жыл бұрын
Hi Reza, Thank you for all the great ideas and helpful tutorials. I did run into an issue when I created this app and I hope you might have an idea why. The app I created works perfectly for me. However, when I shared with coworker the PDF's don't view. If I make them a co owner and they follow the steps for retrieving the image code and paste in pdf viewer document code, then it works for them but not me, lol. Everything else works but pdf. I was hoping embed this on a SharePoint site for many to use. Thank you!!!
@RezaDorrani
@RezaDorrani Жыл бұрын
This was answered by users in comments. This was the answer from a user “Here is the fix I think I figured out a solution for my pdf file problem. In the document URL the 32 digit id/number between 'azure-apim.net%2Fapim%2Fsharepointonline%2F' and 'datasets%2Fhttps' changes by user. So I kept a single dummy file at root level and saved its url in Pic column. In PA I am lookingup that file”
@sylviat5211
@sylviat5211 Жыл бұрын
@@RezaDorrani Thank you Reza, you are so fast to respond!!!! I will give this a try. Keep up the great work. You are famous in my circles. Everyone knows your name :)
@ThomasTreiber-zc1sf
@ThomasTreiber-zc1sf Жыл бұрын
@@RezaDorrani Hi Reza, I have the same Problem with the ID Number of diffrent users. I will fix the code but I don't understand what you mean "kept a single dummy file at root level and saved its url in Pic column". What ist the root level and how can i do this? Please can you help me? I would also like to thank you for your great videos, they have helped me many times!
@RezaDorrani
@RezaDorrani Жыл бұрын
@@ThomasTreiber-zc1sf Root level means at top level of library not in folders.
@ThomasTreiber-zc1sf
@ThomasTreiber-zc1sf Жыл бұрын
⁠​⁠@@RezaDorraniok! My Library is Not in a folder it is in the Root of My teamwebsite This is My Top Level. Habe you any idea? It is very Important for me many thanks
@AnandavadivelanV
@AnandavadivelanV 3 жыл бұрын
Fantastic Reza. Just what I needed to do for my new project. You have done all the heavy-lifting, saving me a lot of time. Thanks a million!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Great to hear!
@AnandavadivelanV
@AnandavadivelanV 3 жыл бұрын
Any chance you have found a way to play videos stored in the document library without leaving PowerApps?
@RezaDorrani
@RezaDorrani 3 жыл бұрын
@@AnandavadivelanV I have not tried that.
@AnandavadivelanV
@AnandavadivelanV 2 жыл бұрын
@@RezaDorrani hi Reza, have you had any success with adding type MS Stream Video link to the document library and having that play using the Stream player in the PowerApp?
@RezaDorrani
@RezaDorrani 2 жыл бұрын
@@AnandavadivelanV I have not given that a try. Something to investigate.
@elinagash1
@elinagash1 3 жыл бұрын
Great solution, just what I needed I spent a lot of time on a solution for viewing PDF. Thanks
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Glad it was useful
@404ryannotfound
@404ryannotfound 3 жыл бұрын
Another great tutorial Reza, oh, I have the absolute please to know Paul (he's amazing). I've learnt so much from people like you, Paul and Shane Young.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you Ryan
@yeraldo05
@yeraldo05 3 жыл бұрын
What a great video Reza!!!!! Keep them coming!!!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you. Will keep trying my best.
@dweaver5313
@dweaver5313 3 жыл бұрын
Brilliant!! Please continue adding features.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you. Working on it!
@jamaiquevandamme2267
@jamaiquevandamme2267 3 жыл бұрын
Thank you for sharing your Knowledge Reza! much appreciation 🙏🙏🙏
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you for watching
@rowlandjones3872
@rowlandjones3872 2 жыл бұрын
Reza!!! This is a total hack and an answer to soooo many things...Thanks bro. Please please please do not stop. Kindly continue these great educational videos
@RezaDorrani
@RezaDorrani 2 жыл бұрын
Thank You. I will keep trying my best to provide unique and valuable content.
@737cl9
@737cl9 3 жыл бұрын
Definitely deserve a like. Simply awesome.!!!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you
@Darbokst
@Darbokst 2 жыл бұрын
Thank you for this. This video showed me how to do everything I needed to do.
@RezaDorrani
@RezaDorrani 2 жыл бұрын
Great 👍
@ThePriyankaz
@ThePriyankaz 3 жыл бұрын
Wow 👏🏻 im using that flow approach in one of my app now will be change with this one thanku for this superb trick👍🏻
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Go for it!
@NarnawareSunil
@NarnawareSunil 3 жыл бұрын
Super Super Brilliant.. Thank You Reza for sharing with us.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
You are most welcome
@simonhart2186
@simonhart2186 3 жыл бұрын
Awesome work. You always seem to bring out a vid that suits a couple of use cases I have at any time.... Would definitely like to see folder navigation
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thanks! Will do!
@rolandadickson7510
@rolandadickson7510 3 жыл бұрын
This was so extremely helpful! Thank you so much for posting this video. I have subscribed so that if/when you add a video with the extra tid bits you mentioned I can soak up the knowledge!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thanks for the sub and the part 2 video will be out next week
@andypiker
@andypiker 3 жыл бұрын
A+, great findings. Waiting for pt2
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank You
@emmanuelgallis1383
@emmanuelgallis1383 3 жыл бұрын
Really really nice Reza!!! Loved your demo!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank You 😊
@benmoussamohammed2151
@benmoussamohammed2151 3 жыл бұрын
many thanks M.Reza Dorrani , you are the best :)
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Always welcome
@bozozi1
@bozozi1 3 жыл бұрын
Really nice job, and I reallly the way you explain your work ! Bravo !
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you very much!
@nuinhuin2685
@nuinhuin2685 3 жыл бұрын
Thank you Reza. Your video gives me more ideas how to improve my apps.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Glad to hear that! Thank you for watching
@dacsch97
@dacsch97 Жыл бұрын
This is so flippin cool! Thank you so much! This is going to take my new app to the next level.
@RezaDorrani
@RezaDorrani Жыл бұрын
Glad to hear that. Thanks for watching.
@saschageng5747
@saschageng5747 2 жыл бұрын
Hi Reza, once again a great solution. Than you for this,I recognized just now! This brings so much additional options in building user friendly apps.
@RezaDorrani
@RezaDorrani 2 жыл бұрын
You are most welcome! The technique showcased in video is something I was trying to crack for months.
@jasmingutierrez6815
@jasmingutierrez6815 3 жыл бұрын
You always impress me with your works. This video is a must-keep. I might use this in the future. Thanks for sharing your knowledge.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you 😊
@necdetsaritas8722
@necdetsaritas8722 3 жыл бұрын
Just amazing as always.Thanks, Reza
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thanks 😊
@sergii845
@sergii845 7 ай бұрын
Brilliant as always... thanks a lot! You are the best!
@RezaDorrani
@RezaDorrani 7 ай бұрын
Thank You
@jjgonzo1
@jjgonzo1 3 жыл бұрын
i was looking for this 4hours ! tankiuuuuuuuuuuuuuuuuuuuuuuuuuu !!!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
You are most welcome
@DIEPAZLO
@DIEPAZLO 2 жыл бұрын
Dear Reza, I am really impressed, you are the MASTER !!!! Thanks a lot for sharing, this tip will solve a strong issue I had since years not been able to see the drawings in *.pdf or *.tif in sharepoint and powerapp. This Thumbnail features is amazing and allowing to see whatever doc as an image.
@RezaDorrani
@RezaDorrani 2 жыл бұрын
Thanks so much for your kind words! I'm no Master. I like exploring, learning new things and sharing them.
@jbecs
@jbecs 3 жыл бұрын
Thank you Reza, its a great video, great work!!!!!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you 😊
@huludf.ibrahim4644
@huludf.ibrahim4644 3 жыл бұрын
Thank you so much! Exciting!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
You are most welcome
@zero2herobeatspaul882
@zero2herobeatspaul882 3 жыл бұрын
Reza, the detective!! Genius.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thanks 😊
@milkatesfaye
@milkatesfaye 3 жыл бұрын
Amazing! Thank you so much for this Raza.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thanks for watching
@fernandanascimento5389
@fernandanascimento5389 9 ай бұрын
Thanks for sharing your knowledge!
@RezaDorrani
@RezaDorrani 9 ай бұрын
My pleasure!
@karukarthi2609
@karukarthi2609 3 жыл бұрын
Great video again.Clever workaround 😇Thanks Reza. I was about to bring out launch browser option not showing for the pdf file. But that has been already clarified in the previous comments 👍 Our entire project team following your videos and implementing it😀
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you. Happy to hear many are using these concepts in their own projects.
@ResponsibleXI
@ResponsibleXI 3 жыл бұрын
You are the best teacher! Thats the comment :-)
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you! 😃
@rexnii3458
@rexnii3458 6 ай бұрын
Absolutely amazing! I love this.
@RezaDorrani
@RezaDorrani 6 ай бұрын
Glad you like it!
@mohanadurgasai.p7344
@mohanadurgasai.p7344 3 жыл бұрын
Superb!! You played with it...Yes, need that filtering files/folders option.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Folders and breadcrumbs video is here kzfaq.info/get/bejne/itOCeaSBnN64p58.html
@TheRoshanrussak
@TheRoshanrussak 5 ай бұрын
Amazingly well explained
@jagadeeshk.474
@jagadeeshk.474 3 жыл бұрын
Superb one .....! Once again proven Genius!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you so much 😀
@rubainarahman6401
@rubainarahman6401 2 жыл бұрын
Thank you for this video. Was looking for something like this one. 😊
@RezaDorrani
@RezaDorrani 2 жыл бұрын
Thanks for watching
@javiermatsuokadiaz4661
@javiermatsuokadiaz4661 8 ай бұрын
Excellent material, Reza!!
@RezaDorrani
@RezaDorrani 8 ай бұрын
Most welcome
@mrmurari5121
@mrmurari5121 3 жыл бұрын
Excellent, gave me a new way of thinking
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Glad it was useful!
@christopheo9559
@christopheo9559 3 жыл бұрын
Woaw Amazing job Reza ! Just what i needed... :D
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thanks
@chmielos2000
@chmielos2000 3 жыл бұрын
Magic! Brilliant video Reza
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thanks 😊
@KeithWilliamsbangor
@KeithWilliamsbangor 3 жыл бұрын
Outstanding work!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you! Cheers!
@juancsanchezv
@juancsanchezv 3 жыл бұрын
This is awesome, thanks again for your videos 👍👍👍
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Glad you like them!
@Jefrysuko
@Jefrysuko 3 жыл бұрын
Yes, folders, filters and breadcrumbs would be awesome.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Part 2 Video will be out today
@ramkalor
@ramkalor Жыл бұрын
Reza Thanks for your video i was stuck on that part on my work it was very useful, it's a relief to get this part done
@RezaDorrani
@RezaDorrani Жыл бұрын
Glad it helped
@GilbertYatesPhotography
@GilbertYatesPhotography 2 жыл бұрын
So good Reza, thanks again for your awesome videos.
@RezaDorrani
@RezaDorrani 2 жыл бұрын
Glad you like them!
@deep2480
@deep2480 3 жыл бұрын
Another awesome video Reza!!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Glad you enjoyed!
@benjaminkron8625
@benjaminkron8625 3 ай бұрын
Thanks for the swift reply. Will try my luck there.
@RezaDorrani
@RezaDorrani 3 ай бұрын
Good luck
@lynettecotter9307
@lynettecotter9307 2 ай бұрын
Fantastic!!! Thank you so much!
@RezaDorrani
@RezaDorrani 2 ай бұрын
You're very welcome!
@ashrafjavali2841
@ashrafjavali2841 Жыл бұрын
Wao! you are grate Mr. Reza it rocks, I was struck for getting this done without flow, now zuuuuuuup... Thanks a lot for this video.
@RezaDorrani
@RezaDorrani Жыл бұрын
You are very welcome
@michelforro
@michelforro 3 жыл бұрын
Well done Reza, very neat solution!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank you
@samrajkumar2868
@samrajkumar2868 2 жыл бұрын
This is simply awesome. I searched to have to option for last few days and ended up with a not clear viewable excel thumbnail
@RezaDorrani
@RezaDorrani 2 жыл бұрын
Thanks for watching.
@oluwatosinawobokun7804
@oluwatosinawobokun7804 2 жыл бұрын
Truly, you are the best. Please do a video to further expand this as you mentioned at the end of this video.
@RezaDorrani
@RezaDorrani 2 жыл бұрын
Its already done :) Here it is kzfaq.info/get/bejne/itOCeaSBnN64p58.html
@rupammishra8775
@rupammishra8775 3 жыл бұрын
Gr8 one...Looking forward for more...Thanks for sharing
@RezaDorrani
@RezaDorrani 3 жыл бұрын
More to come!
@govindachandra8404
@govindachandra8404 3 жыл бұрын
Simply awesome informative video eagerly waiting for the next part .Like your all other video tutorials series you are making us more skillful. Thank you
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thanks a ton! Working on the next one.
@keertishrivastava9461
@keertishrivastava9461 3 жыл бұрын
Very helpful . Thanks for sharing.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
My pleasure
@eddieeales5699
@eddieeales5699 3 жыл бұрын
Brilliant, thanks Reza!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thank You
@RanjitSingh-xk9sb
@RanjitSingh-xk9sb 3 жыл бұрын
Awesome video. Thank you for the hard work to create valuable content. Please make this into series of videos. Looking forward to it.
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Working on part 2
@HoVN
@HoVN 3 жыл бұрын
Amazing Reza! I've been following you for a while and every time I think I know enough you surprise me with these brilliant ideas and examples! I'll most definitely use this one! Excellent video. Now I share my challenge with you... I'm trying to do the same for SharePoint list items when you need to preview the attachments! It's taking a lot of reading, but eventually I hope I'll get there. Thanks for sharing!
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Thanks for following my work. I always try to do different things and show simple patterns to build apps and flows. For the list item attachments part, I kind of showed a glimpse of it here kzfaq.info/get/bejne/e6dznpib0bfDmok.html
@HoVN
@HoVN 3 жыл бұрын
@@RezaDorrani Thank you again!
@sininv1
@sininv1 3 жыл бұрын
Awesome just as I need, it come in time :) for the folder too in the other video
@RezaDorrani
@RezaDorrani 3 жыл бұрын
Great 👍
@spageBIM
@spageBIM Жыл бұрын
Simply fantastic!
@RezaDorrani
@RezaDorrani Жыл бұрын
👍
Power Apps SharePoint Document Library Tutorial
28:41
Reza Dorrani
Рет қаралды 81 М.
Canvas App: View PDF stored in SharePoint Document Library | No Flow
30:53
Incredible magic 🤯✨
00:53
America's Got Talent
Рет қаралды 74 МЛН
路飞被小孩吓到了#海贼王#路飞
00:41
路飞与唐舞桐
Рет қаралды 69 МЛН
Red❤️+Green💚=
00:38
ISSEI / いっせい
Рет қаралды 32 МЛН
Printing/Saving PDFs with Signatures and Images (No Premium Power Apps)
17:36
Andrew Hess - MySPQuestions
Рет қаралды 2,8 М.
Editable Grid in Power Apps | SharePoint List
42:49
Reza Dorrani
Рет қаралды 357 М.
[New in PowerApps] The new PDF() function is a gamechanger
28:50
R2Power - Lern PowerApps
Рет қаралды 31 М.
Power Apps Pen Input save to SharePoint & PDF (Signature)
22:11
Reza Dorrani
Рет қаралды 80 М.
PowerApps upload file to SharePoint document library
28:21
Shane Young
Рет қаралды 273 М.
SharePoint Document Library Tutorial
20:22
Kevin Stratvert
Рет қаралды 645 М.
Power Apps SharePoint Document Library Browser
31:17
Shane Young
Рет қаралды 98 М.
Incredible magic 🤯✨
00:53
America's Got Talent
Рет қаралды 74 МЛН