![]() |
![]() |
![]() |
|||||
![]() |
![]() |
![]() |
![]() |
![]() |
|||
| Welcome
to Tech Support Forum home to more then 136,000 problems solved. Issues
have included: Spyware, Malware, Virus Issues, Windows, Microsoft,
Linux, Networking, Security, Hardware, and Gaming Getting your
problem solved is as easy as: 1. Registering for a free account 2. Asking your question 3. Receiving an answer Registered members: * See fewer ads. * And much more..
|
| Want to know how to post a question? click here | Having problems with spyware and pop-ups? First Steps |
|
|||||||
| Microsoft Office support MS Office support forum |
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 (permalink) |
|
Registered User
Join Date: Sep 2008
Posts: 1
OS: XP
|
Need Excel Formula to convert formula to value
In Col A I have the date, formatted as yy-mm-dd
In Col B I have a formula: "=A1", formatted as ddd That means that Col B displays the "day of the week" as text There are other columns with stuff in them... In Col F, I want to do a formula ONLY IF that row is not a Sat or Sun. =If(OR(A1<>"Sat",A1<>"Sun"),"Formula goes here","Sorry its a weekend") Of course, that formula doesn't work because Col B is a formula, not the text. Without creating a new column that has a static PasteValues of the displayed text in Col B, is this possible? Thanks! |
|
|
|
| Important Information |
|
Join the #1 Tech Support Forum Today - It's Totally Free!
TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free. Join TechSupportforum.com Today - Click Here |
|
|
#2 (permalink) |
|
Registered User
Join Date: May 2008
Location: Baltimore, Maryland
Posts: 160
OS: Windows XP SP3
|
Re: Need Excel Formula to convert formula to value
Here's one way to do it. You can use a formula in column F such as:
=IF(AND(TEXT(A1,"ddd")<>"Sat",TEXT(A1,"ddd")<>"Sun"),"Formula goes here","Sorry its a weekend") Last edited by David M58; 09-13-2008 at 12:25 PM. |
|
|
|
|
|
#3 (permalink) |
|
TSF Enthusiast
Join Date: Apr 2008
Location: Australia
Posts: 562
OS: Vista
|
Re: Need Excel Formula to convert formula to value
Hi Lairdrice,
Try: =IF(MOD(A1,7)>1,"Formula goes here","Sorry its a weekend") or: =IF(MOD(B1,7)>1,"Formula goes here","Sorry its a weekend")
__________________
Cheers macropod (MS MVP -Word) |
|
|
|
![]() |
| Thread Tools | |
|
|