Can i do the equal to operator command the same in Excel?

Can i do the equal to operator command the same in Excel?

aldrinjade_faller
Observer Observer
509 Views
2 Replies
Message 1 of 3

Can i do the equal to operator command the same in Excel?

aldrinjade_faller
Observer
Observer

I want to automate data in cad to excel. However, the data link command is only good for a single excel file making it difficult since i have a multiple tables and its more complicated. Im thinking the "equal" command (the same in excel) to make a seperate table where i can easily copy all the datas in a single table, rather that going through all seperated tables.

0 Likes
510 Views
2 Replies
Replies (2)
Message 2 of 3

kaustubh_jagtap200
Community Visitor
Community Visitor

Yes, in Excel, you can use the equal-to (=) operator to create formulas and compare values, similar to how it's used in programming. Here are two main ways you can use it:

  1. Creating a formula:

    • To perform calculations, start by typing = in a cell, followed by the formula. For example, to add two numbers:
       
      Copy code
      =A1 + B1
  2. Comparing values:

    • To check if two values are equal, use the = operator. For example, to check if the value in cell A1 is equal to the value in B1:
       
      Copy code
      =A1 = B1

    This will return TRUE if they are equal, or FALSE if they are not.

Both uses are valid in Excel and can simplify calculations and logical comparisons.

0 Likes
Message 3 of 3

aldrinjade_faller
Observer
Observer

Hello thank you for the response, I really appreciate it. The problem is im not sure if i can do it in AutoCAD, Is there any way?

0 Likes