achoudh5 / Manipulating_Excel_Sheet

Real world application of Manipulating Excel Sheet using python.
Apache License 2.0
8 stars 14 forks source link

Iterate over specific columns but all the rows, check if the entry is an ip address only then proceed #1

Closed achoudh5 closed 3 years ago

achoudh5 commented 3 years ago

Update:- I have added a sample excel sheet with Column A,B,C Update2:- I also uploaded an Expected Output file, you can color the values you read (color is not important) but column B should be as is. Task:- Ex. Iterate over Column A and C from row-> 1 to 100 & skip column B. Entries in rows would be like 4.4.4.4 or a text like abcd, the cell value should only be read when it's 4.4.4.4 and pass when it's a text The location and name of file should be same Use language: python and module: openpyxl Take an example excel sheet yourself if you want to.

Documentation:-

Please update Readme giving some pointers as well, that'll help understand people who are new to pandas or openpyxl. Thanks and really appreciate your valuable time!

Assigning More Issue (Coming Soon, Comment if interested):-

People who comment first will be given priority, having said said that if you are interested in this manipulation of excel sheet, do comment and I'll create a new exciting issue . I have started with one and after some progress, I'll add more as well. Few examples of upcoming issues:-

aparharsh commented 3 years ago

Hey, I have experience in working with python and its modules. Can you assign this issue to me?

achoudh5 commented 3 years ago

sure @aparharsh

aparharsh commented 3 years ago

Can we connect on some platform? For eg., on Gmail? So that I can get some more details about the task. I was not able to get your email id on your profile, so can you either give me your mail id or mail on mine?

achoudh5 commented 3 years ago

I would prefer to use this issue thread @aparharsh if that's fine by you. I would be happy to answer any doubts you might have for the issue. Another reason being your doubt might help other people as well :)

aparharsh commented 3 years ago

I have a few doubts. Will i be given the column names which must be iterated? Or, there will be always two columns, A and C. Only those rows must be considered for the further code whose columns A and C both, must be containing a string of format 1.2.3.4 ? Which cell values must be read, if both A and C contains the format 1.2.3.4 ?

achoudh5 commented 3 years ago

Good Question @aparharsh !

aparharsh commented 3 years ago

I wrote the code, along with proper comments explaining the whole code. Can you review it ?