Excel spreadsheet Formula & Linkage between sheets

razorback

New Member
Joined
Jul 24, 2007
Messages
7
Thanks to the 3 individuals responding to my question last week concerning moving the date forward to the first of the month.
I have two additional issues:
1) Why does this formula not work:
=if(A="N/A" & B<>"N/A","ERROR","OK")

2) I have linked several sheets in one spreadsheet. When I sort the primary sheet, the linked sheets will adjust correctly, but the cell references within the primary sheet do not --- which causes major problems.
This is a result of one such formula: =IF(K7=52,MRP52!E2,MRP12!E2)
It should read =IF(K2=52,MRP52!E2,MRP12!E2)
The issue is the reference to cell K2, it changes to K7. Any idea ??
Thanks Art Mueller
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Try

=IF(AND(A1="N/A", B1<>"N/A"),"ERROR","OK")

but are you really looking for "N/A" or the error value #N/A?
 
Upvote 0

Forum statistics

Threads
1,214,821
Messages
6,121,755
Members
449,049
Latest member
excelknuckles

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top