C
Calvin
This was my orginal question: What I am tring to do is create a cel
that will look at my NOW() string and find ex: "*Monday*". My forma
for the NOW() cell is dddd d mmm yyy. What I have found out is that i
I use a IF statement like such: IF (M2="*Monday*",L2,wrong) well nee
less to say that doesnt work. Peo one one the users here suggested
use a COUNTIF and after some more research that only works if you kno
the exact value. Overall I would like to say IF a cell has Monday i
the results take the vaule of another cell and add it to this cell.
And I gt an awsome answer, that work with try
=IF(WEEKDAY(M2,1)=2,L2,"no monday")
My next question is if I only want it to add the corresponding cell i
a range of cells how can do this? example:
if two of the values in range M2:M50 is equal to Monday ie(M2&M3) an
if so I only want L2&L3 added to the cell, how do I prevent th
equation from adding up L2:L50? I tried this, but it returned a #NUM
error
=IF(WEEKDAY(M2:M50,1)=2,L2:L50,"no monday"
that will look at my NOW() string and find ex: "*Monday*". My forma
for the NOW() cell is dddd d mmm yyy. What I have found out is that i
I use a IF statement like such: IF (M2="*Monday*",L2,wrong) well nee
less to say that doesnt work. Peo one one the users here suggested
use a COUNTIF and after some more research that only works if you kno
the exact value. Overall I would like to say IF a cell has Monday i
the results take the vaule of another cell and add it to this cell.
And I gt an awsome answer, that work with try
=IF(WEEKDAY(M2,1)=2,L2,"no monday")
My next question is if I only want it to add the corresponding cell i
a range of cells how can do this? example:
if two of the values in range M2:M50 is equal to Monday ie(M2&M3) an
if so I only want L2&L3 added to the cell, how do I prevent th
equation from adding up L2:L50? I tried this, but it returned a #NUM
error
=IF(WEEKDAY(M2:M50,1)=2,L2:L50,"no monday"