Ask Question Forum:
Model Library:2025-02-08 Updated:A.I. model is online for auto reply question page
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by rgb192
at 2024-01-14 21:04:41
Point:500 Replies:5 POST_ID:828882USER_ID:11487
Topic:
Microsoft Excel Spreadsheet Software;;
using excel 2007 for windows
Please teach me how to compare two .csv files, so I can see both at the same time.
Please teach me how to compare two .csv files, so I can see both at the same time.
Author: rgb192 replied at 2024-01-15 06:02:37
All these options could work,
Saqib Husain, Syed is the easiest.
Thanks.
Saqib Husain, Syed is the easiest.
Thanks.
Assisted Solution
Expert: murphey2 replied at 2024-01-15 00:33:54
125 points EXCELLENT
Excel isn't the best program for this, I prefer the compare option Notepad++ (Freeware)
Assisted Solution
Expert: Saqib Husain, Syed replied at 2024-01-14 21:32:32
125 points EXCELLENT
Alternatively,
Restore the file window (Not the excel window) by clicking on the square button next to the X button (for close file) and then resize the windows as desired.
Restore the file window (Not the excel window) by clicking on the square button next to the X button (for close file) and then resize the windows as desired.
Accepted Solution
Expert: Saqib Husain, Syed replied at 2024-01-14 21:30:22
125 points EXCELLENT
You do not need VBA to do this. Simply go to
View > Arrange all
View > Arrange all
Assisted Solution
Expert: duncanb7 replied at 2024-01-14 21:20:51
125 points EXCELLENT
Could you use Excel 2007 VBA code ? for example, following code using FileDateTime function,
Range("a1") = FileDateTime("d:file1.csv")
Range("a2") = FileDateTime("d:file2.csv")
If Range('a1") =Range("a2") Then
Range('a3") ="True"
Else
Range("a3")="False"
End If
Hope understand your question completely, if not, please pt it out
Duncan
Range("a1") = FileDateTime("d:file1.csv")
Range("a2") = FileDateTime("d:file2.csv")
If Range('a1") =Range("a2") Then
Range('a3") ="True"
Else
Range("a3")="False"
End If
Hope understand your question completely, if not, please pt it out
Duncan