Пікірлер
@krutipatel8131
@krutipatel8131 7 күн бұрын
{ }.All() this query give me error, please solve this error
@cloudmadeeasy7010
@cloudmadeeasy7010 10 күн бұрын
Hi Thanks for such great content. I want help with one of the scenarios. The scenario is “ I have a datatable and i want to group the datatable as per dates. Inside each group i want to find all the possible combinations of sum of amounts taking two amounts into consideration”. Can u please help me with this. Thanks.
@sikandersingh8874
@sikandersingh8874 15 күн бұрын
Hi, that is not work on updated version .. Pls help
@alisherchynaliev4408
@alisherchynaliev4408 Ай бұрын
10\10
@chiragpatel1603
@chiragpatel1603 Ай бұрын
Is it possible to rename datatable in uipath?
@ActAutomate
@ActAutomate Ай бұрын
Sure you can do it in a simple way: Create a new variable of type DataTable and set the name you want to have as a new name for the table Add an Assign activity Set the new variable on the left side On the right side you can add the current table you want to rename In this way, the new variable has the same content as the old one. This is a very simple way to rename the table. Another one will be using Invoke Code activity, where you do exact the same but inside the code.
@alimucar2705
@alimucar2705 Ай бұрын
The metaphorization and teaching technique is very effective and professional. I learned many concepts correctly in just 12 minutes. 💥 Thanks so much.. 🌺🌺🌺
@DonPromiillo
@DonPromiillo Ай бұрын
Thanks for the video. My Process couldn't find any Excel files, although there where plenty open.. I guess something is worng with the condition. I tried to put the condition into a var, which ended in an error (var didn't except "Process(xxx)" Edit: Found something: kzbin.info/www/bejne/rICcqHamm89lobM
@TeluguDevotionalJourneys
@TeluguDevotionalJourneys Ай бұрын
How to group based on index size
@ActAutomate
@ActAutomate Ай бұрын
Cooles Video
@Code_Prince
@Code_Prince 2 ай бұрын
Can you do more projects using the REFramework, Please, thanks
@vaigunthrey9228
@vaigunthrey9228 2 ай бұрын
Thanks for the explanation , it was a useful tutorial
@sameerkumarsahu5164
@sameerkumarsahu5164 2 ай бұрын
@Act Automate would you be able to provide any real-time example of API using uipath so that we can better understand it
@ActAutomate
@ActAutomate 2 ай бұрын
This video already contains a use case for using an API in UiPath. Do you need something else? There is also another video about ChatGPT API in UiPath, which also another use case to learn more about using APIs in UiPath.
@sameerkumarsahu5164
@sameerkumarsahu5164 2 ай бұрын
@@ActAutomate Thanks for the quick response! What I'm requesting is if you could please create more videos on how to use all the methods and how to get and update the orchestrator using the API. For example, if there are 20 queue items that are postponed, how can we clear those using the API? Something like this would be really helpful.
@polugopi8194
@polugopi8194 3 ай бұрын
i have a question, here you are using one data table and getting unique value @30:00 and what about the same task by utilizing 2 data tables?
@ActAutomate
@ActAutomate Ай бұрын
Certainly! It sounds like you're working with data tables and aiming to extract unique values from them. Whether you're using tools like **Power BI**, **Excel**, **SQL**, or programming languages like **Python (pandas)**, the general approach can vary slightly based on the platform. I'll provide a broad overview for handling this task using **two data tables** compared to using a **single data table**. ### **Scenario with a Single Data Table** When you have one data table and want to extract unique values, the process typically involves: 1. **Identifying the Column(s):** Determine which column(s) you want to retrieve unique values from. 2. **Applying a Distinct Operation:** - **Power BI (DAX):** Use the `DISTINCT` function. - **Power Query:** Use the "Remove Duplicates" feature. - **SQL:** Use `SELECT DISTINCT`. - **Python (pandas):** Use `df['column'].unique()` or `df['column'].drop_duplicates()`. *Example in Power BI DAX:* ```DAX UniqueValues = DISTINCT(Table1[ColumnName]) ``` ### **Scenario with Two Data Tables** When working with **two data tables**, you might want to extract unique values across both tables or based on some relationship between them. Here's how you can approach it: #### **1. **Appending/Combining the Tables** If both tables have the same structure and you want a combined list of unique values: - **Power BI (Power Query):** - **Append Queries:** Go to **Home > Append Queries** to stack the tables. - **Remove Duplicates:** After appending, select the column and choose "Remove Duplicates". - **SQL:** ```sql SELECT ColumnName FROM Table1 UNION SELECT ColumnName FROM Table2; ``` The `UNION` operation automatically removes duplicates. - **Python (pandas):** ```python combined = pd.concat([df1['ColumnName'], df2['ColumnName']]).unique() ``` #### **2. **Merging/Joining the Tables** If the tables are related and you want unique values based on a relationship: - **Power BI (DAX):** - **Relationships:** Ensure there's a relationship defined between the two tables. - **Using `UNION` in DAX:** ```DAX CombinedUnique = DISTINCT( UNION( SELECTCOLUMNS(Table1, "ColumnName", Table1[ColumnName]), SELECTCOLUMNS(Table2, "ColumnName", Table2[ColumnName]) ) ) ``` - **SQL:** ```sql SELECT DISTINCT T1.ColumnName FROM Table1 T1 JOIN Table2 T2 ON T1.Key = T2.Key ``` Adjust the `JOIN` type (INNER, LEFT, etc.) based on your specific requirements. - **Python (pandas):** ```python merged = pd.merge(df1, df2, on='KeyColumn') unique_values = merged['ColumnName'].unique() ``` #### **3. **Using Lookup Tables or Relationships** If you're referencing unique values from one table in another: - **Power BI:** - **Create a Relationship:** Define relationships in the model view. - **Use LOOKUPVALUE or RELATED:** To fetch unique values based on relationships. - **SQL:** Utilize foreign keys and join operations to fetch related unique values. ### **Practical Example in Power BI** Let's assume you have two tables: - **Sales 2022** - **Sales 2023** **Objective:** Get a unique list of Product IDs sold across both years. **Steps:** 1. **Append Queries:** - Go to **Home > Append Queries** in Power Query. - Select both **Sales 2022** and **Sales 2023**. 2. **Remove Duplicates:** - Select the **ProductID** column. - Click on **Remove Duplicates** in the ribbon. 3. **Load the Data:** - This will give you a single table with unique Product IDs from both years. **Alternative DAX Approach:** ```DAX UniqueProductIDs = DISTINCT( UNION( SELECTCOLUMNS('Sales 2022', "ProductID", 'Sales 2022'[ProductID]), SELECTCOLUMNS('Sales 2023', "ProductID", 'Sales 2023'[ProductID]) ) ) ``` This DAX formula creates a new table `UniqueProductIDs` containing distinct Product IDs from both sales tables. ### **Key Considerations** - **Data Consistency:** Ensure that the columns you’re combining have the same data types and formats to avoid errors. - **Performance:** For large datasets, operations like `UNION` and `JOIN` can be resource-intensive. Optimize your queries or consider indexing if using databases. - **Relationships:** Clearly define how your tables relate to each other to accurately extract and combine unique values. - **Tool-Specific Functions:** Each platform has its own set of functions and best practices. Familiarize yourself with the ones relevant to your tool (e.g., Power Query M functions vs. DAX functions in Power BI). ### **Conclusion** Extracting unique values from two data tables involves deciding whether to **combine** them first (through appending or merging) and then extracting unique values, or to extract unique values separately and then combine those results. The exact method depends on your specific requirements and the tools you're using. If you provide more details about your data setup or the tool you're using, I can offer a more tailored solution!
@kebincui
@kebincui 3 ай бұрын
awesome tutorial 👍❤
@ActAutomate
@ActAutomate Ай бұрын
Thank you so much! I'm thrilled to hear that you enjoyed the tutorial. 😊 If you have any questions or need further assistance, feel free to reach out!
@jonpguthrie
@jonpguthrie 4 ай бұрын
What if the EmployeeID appears in both tables, but one of the details in a column has changed in the new table, how can we also include changed rows in the output datatable?
@IndianRoadChronicle
@IndianRoadChronicle 4 ай бұрын
Fantastic! This is basically the -ve VLOOKUP which I was looking for :)
@ThuyTienMoonSun-qv6ek
@ThuyTienMoonSun-qv6ek 5 ай бұрын
It's so detailed and useful. Thank you so much!
@ulcaymurat
@ulcaymurat 5 ай бұрын
there is only one thing to say... Perfect!!!
@NoobadiSage
@NoobadiSage 5 ай бұрын
Great explanation! I was initially hesitant due to the robotic voice, but I'm glad I gave it a chance-your content is a hidden treasure. Keep it up!
@viewers23
@viewers23 5 ай бұрын
awesome video
@robotdream8355
@robotdream8355 5 ай бұрын
Hi, its amazing. I am following your channel. I am getting the issues with this. Could you please assist me? Inside try catch for assign activity, I am getting error "source contain no data rows". but outside try catch it showing rows. what is the exact reason for this?
@mikemomos1099
@mikemomos1099 5 ай бұрын
Oh my god. You really helped me with this knowledge. Very well explained
@deepakkumarbhuyan9002
@deepakkumarbhuyan9002 6 ай бұрын
You didn't explained anything about RetryCurrentTransaction in case of system exception....it would be great help if you include such explanation in further.
@muralikothapalli
@muralikothapalli 6 ай бұрын
Awesome content
@404LogicNotFound
@404LogicNotFound 7 ай бұрын
this video is Excellent Explanation Thanks
@bartlomiejrubaj4996
@bartlomiejrubaj4996 7 ай бұрын
Hi, thank you very much for this great video, I have a small question, let's say I have a datatable where one column contains amount and currency, how can I use LINQ in Uipath to remove the currency from all rows in that column? Let's say there is a row 100 EUR and I want to leave only 100 and remove "EUR". If you already posted video regarding it I would appreciate the link
@Baichannyyuri
@Baichannyyuri 7 ай бұрын
for the variable MyLookup why do you used the interface ILookup for its type instead of the class Look up
@MatiasGastonClementeGutier-i4w
@MatiasGastonClementeGutier-i4w 7 ай бұрын
Great! thanks a lot.
@islamismail7943
@islamismail7943 7 ай бұрын
Thank you sir for your awesome tutorial! I have a suggestion. could you please provide the Files that used in the video so we can practice and follow up with you sir? as this make us gaining and grasping the info more and more!
@suraj_singh321
@suraj_singh321 7 ай бұрын
Hi sir make a video on SAP automation tutorial in uipath
@Baichannyyuri
@Baichannyyuri 7 ай бұрын
@15:24 since JObject is a class declaring jsonObject variable to JObject wouldnt need a new operator? shouldnt the dim statement be like this Dim jsonObject As New JObject = JObject.Parse(jsonContent)
@MohamedAbodeep-he7xm
@MohamedAbodeep-he7xm 7 ай бұрын
عظيم جدا شكر جزيلا
@hiremathnandini2
@hiremathnandini2 7 ай бұрын
Your all videos are very clear means anybody can understand basic to advance...Thanks for infomation about VBA ,,everbody expect this kind of content
@bhavanimunaga972
@bhavanimunaga972 7 ай бұрын
Getting Target Invocation Exception
@Baichannyyuri
@Baichannyyuri 7 ай бұрын
for CINT(row("Value1")) does it return the header? if thats the case does it mean the expression adding two header from two separate column?
@Bibin_Babz
@Bibin_Babz 7 ай бұрын
Getting this error : Invoke Code: No compiled code to run error BC30456: 'HttpUtility' is not a member of 'System.Web'. At line 5 error BC30456: 'HttpUtility' is not a member of 'System.Web'. At line 13
@Bibin_Babz
@Bibin_Babz 7 ай бұрын
html = "<table>" html += "<tr>" For i As Integer = 0 To dt.Columns.Count-1 html += "<th>" + System.Web.HttpUtility.HtmlEncode(dt.Columns(i).ColumnName) + "</th>" Next html += "</tr>" For x As Integer = 0 To dt.Rows.Count-1 html += "<tr>" For y As Integer = 0 To dt.Columns.Count-1 html += "<td>" + System.Web.HttpUtility.HtmlEncode(dt.Rows(x)(y).ToString()) + "</td>" Next html += "</tr>" Next html += "</table>"
@skmNas
@skmNas 8 ай бұрын
You explain each topic so well like from a basic to an advance level, Please do continue the UiPath API Automation Series and also advanced topics of UiPath. Looking forward for more videos and more Knowledge gain from you. Thank you for the LINQ topics.
@ActAutomate
@ActAutomate 8 ай бұрын
Thanks for your feedback, really happy to hear that :-)
@sameerkumarsahu5164
@sameerkumarsahu5164 8 ай бұрын
is there only one video is avaiable for Regex ? I'm unable to find continuation of this series.
@ActAutomate
@ActAutomate 8 ай бұрын
This video is a general video about RegEx, but in many other videos we are using RegEx. To see all videos on the channel, you have to be a channel member, so that you can see the most important videos, especially the LINQ videos (about 70 videos from A to Z)
@Ye_3timepagal
@Ye_3timepagal 8 ай бұрын
When are new videos coming?
@ActAutomate
@ActAutomate 8 ай бұрын
within a month we will start posting new videos each week, not only RPA, but also AI. We are preparing the videos and the topics. In case you have any topics you want to see here, please write us back
@Ye_3timepagal
@Ye_3timepagal 8 ай бұрын
@@ActAutomate that's a great news and thanks for responding my comment.. I have a request to continue with the Short video series of UiPath which is very impactful in learning, please also focus on that part... And also cover how to Convert REFrame work to work with Linear transactions and in a short video so we can add changes or prepare for interviews. Thanks in advance
@A2zyanka
@A2zyanka 8 ай бұрын
I try to login my login page but This code is not working
@sameerkumarsahu5164
@sameerkumarsahu5164 8 ай бұрын
Can't access all the video, if join, can I access all video ?
@ActAutomate
@ActAutomate 8 ай бұрын
Hi Sameer, you have to join the channel (you have to be a channel member), so that you can access all LINQ videos. We will be very happy to have you on our channel. In case you have any questions, please don't hesitate to write us back.
@sameerkumarsahu5164
@sameerkumarsahu5164 8 ай бұрын
@@ActAutomate Do we really have any future growth as a RPA Developer. I'm totally clueless with RPA, because currently I'm getting hardly 20 to 30 % hike. Is it good to continue the RPA or shall I change the domain? Could you please suggest anything?
@WeTHEbeastS_
@WeTHEbeastS_ 6 ай бұрын
@@sameerkumarsahu5164 Stick with the organisation you are in. With years of work experience earn certificates & knowledge over time along with work. Create more dependencies on pars of RPA like database, cloud, orchestrator, etc. With this much of foundation along with work exp in same organisation you can demand a 100% hike and they won't be denying you. Also, do love to automate !
@relax_music668
@relax_music668 8 ай бұрын
How to introduce third-party js libraries?
@AcceptableDatabase0528
@AcceptableDatabase0528 28 күн бұрын
what rpa do you use to import javascript?
@ravichandra3590
@ravichandra3590 9 ай бұрын
Hii can we create a folder using cmd can you plz upload a vediou regarding that❤
@ActAutomate
@ActAutomate 8 ай бұрын
We are working on the new videos, which will be more advanced. Currently we are working on our new concept, therefore we don't upload new videos. Please keep following us and wait for the next generation of our videos, which will help you a lot in your career.
@mangoofficial527
@mangoofficial527 9 ай бұрын
How about I want to inject a js file like: jQuery.js or html2canvas.min.js
@abhigg4735
@abhigg4735 9 ай бұрын
Hi, Is there any link of yours where in you can show how to invoke VBA code in UiPath to download objects from excel sheet .. say for eg. There is an excel documents which has got multiple sheets and there is a sheet named Days and in that there are objects like pdf attached, how can we download it.
@toanhm2
@toanhm2 9 ай бұрын
Dim wb As Workbook Dim ws As Worksheet Dim columnCount As Integer Dim i As Integer Dim valueFound As String ' Gán đối tượng Worksheet đã mở Set ws = ThisWorkbook.Sheets("Tên_Sheet_Cần_Làm_Việc") ' Đếm số cột trong Sheet columnCount = ws.Columns.Count ' Duyệt qua các cột For i = 1 To columnCount ' Lấy giá trị của ô trong hàng đầu tiên của cột hiện tại valueFound = ws.Cells(1, i).Value ' Kiểm tra nếu giá trị là "may" If valueFound = "may" Then ' Nếu tìm thấy giá trị "may", in ra cột tương ứng và thoát vòng lặp Debug.Print "Cột chứa giá trị 'may' là cột số: " & i Exit For End If Next i
@windows10x12
@windows10x12 9 ай бұрын
I have noticed that some recent videos have disappeared, what could it be? Were they removed or what happened?
@ActAutomate
@ActAutomate 9 ай бұрын
Thanks for your comment. The videos are now only for channel members. If you want to watch the videos, you have to be a member. Here is the link: kzbin.info/door/gmw5KA88D6jS8lPBzEXFgAjoin You also have another option to check the videos. You can also join our course on Teachable. There we not only have the LINQ videos, but also more videos about UiPath in general, which are very helpful for any UiPath developer, but also for anyone who wants to learn LINQ in very details, from A to Z. Here is the link to the course: actautomate.teachable.com/p/mastering-linq-in-uipath-with-vb-net-from-zero-to-hero
@alladinb9710
@alladinb9710 9 ай бұрын
hello. is it possible to filter dt by column D with condition above "900eur"? It means you need somehow to convert data.